did stuff, done stuff
This commit is contained in:
parent
4a8fb259dc
commit
62a4f377a1
37 changed files with 325 additions and 399 deletions
|
|
@ -5,7 +5,7 @@
|
|||
bool ts_lex(t_lexer *lexer, t_state_id state)
|
||||
{
|
||||
START_LEXER();
|
||||
eof = lexer->eof(lexer);
|
||||
eof = lexer->data.eof((void *)lexer);
|
||||
switch (state)
|
||||
{
|
||||
case 0:
|
||||
|
|
@ -3460,7 +3460,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->eof(lexer);
|
||||
eof = lexer->data.eof((void *)lexer);
|
||||
switch (state)
|
||||
{
|
||||
case 0:
|
||||
|
|
@ -3597,4 +3597,4 @@ bool ts_lex_keywords(t_lexer *lexer, t_state_id state)
|
|||
default:
|
||||
return false;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue