Showing with 1 addition and 1 deletion.
  1. +1 −0 src/identifier.h
  2. +0 −1 src/lexer.h
1 change: 1 addition & 0 deletions src/identifier.h
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,7 @@ class Identifier : public RootObject
static Identifier *generateId(const char *prefix, size_t i);
static Identifier *idPool(const char *s);
static Identifier *idPool(const char *s, size_t len);
static bool isValidIdentifier(const char *p);
static Identifier *lookup(const char *s, size_t len);
static void initTable();
};
Expand Down
1 change: 0 additions & 1 deletion src/lexer.h
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,6 @@ class Lexer
unsigned decodeUTF();
void getDocComment(Token *t, unsigned lineComment);

static bool isValidIdentifier(const char *p);
static const utf8_t *combineComments(const utf8_t *c1, const utf8_t *c2);

private:
Expand Down