did stuff, done stuff

This commit is contained in:
Maieul BOYER 2024-08-31 18:48:20 +00:00
parent 4a8fb259dc
commit 62a4f377a1
37 changed files with 325 additions and 399 deletions

View file

@ -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;
}
}
}