Refactoring some stuff in the parser lib, moving functions out of headers

This commit is contained in:
Maix0 2024-07-04 00:43:43 +02:00
parent 4580d68951
commit fb3a2d94a0
19 changed files with 522 additions and 608 deletions

View file

@ -4147,7 +4147,7 @@ bool ts_lex(TSLexer *lexer, TSStateId state)
}
}
static bool ts_lex_keywords(TSLexer *lexer, TSStateId state)
bool ts_lex_keywords(TSLexer *lexer, TSStateId state)
{
START_LEXER();
eof = lexer->eof(lexer);