update: normed lots of stuff
This commit is contained in:
parent
978636b6ef
commit
50a2f3d4be
118 changed files with 1145 additions and 1330 deletions
|
|
@ -3,7 +3,7 @@
|
|||
|
||||
bool ts_lex(t_lexer *lexer, t_state_id state) {
|
||||
START_LEXER();
|
||||
eof = lexer->data.eof((void *)lexer);
|
||||
eof = lexer->funcs.eof((void *)lexer);
|
||||
switch (state) {
|
||||
case 0:
|
||||
if (eof) ADVANCE(127);
|
||||
|
|
@ -2423,7 +2423,7 @@ bool ts_lex(t_lexer *lexer, t_state_id state) {
|
|||
|
||||
bool ts_lex_keywords(t_lexer *lexer, t_state_id state) {
|
||||
START_LEXER();
|
||||
eof = lexer->data.eof((void *)lexer);
|
||||
eof = lexer->funcs.eof((void *)lexer);
|
||||
switch (state) {
|
||||
case 0:
|
||||
ACCEPT_TOKEN(ts_builtin_sym_end);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue