Rename type ts_lexer, ts_parser -> TSLexer, TSParser

This commit is contained in:
Max Brunsfeld 2014-06-28 19:01:46 -07:00
parent c8797bfa27
commit 9d4fcf75de
10 changed files with 30 additions and 30 deletions

View file

@ -26,7 +26,7 @@ static TSStateId ts_lex_states[STATE_COUNT]
static const ts_parse_action ts_parse_actions[STATE_COUNT][SYMBOL_COUNT]
#define LEX_FN() \
static TSTree * ts_lex(ts_lexer *lexer, TSStateId lex_state)
static TSTree * ts_lex(TSLexer *lexer, TSStateId lex_state)
#ifdef TS_DEBUG_LEX
#include <stdio.h>
@ -82,8 +82,8 @@ static const TSTree * ts_parse(void *data, TSInput input, TSInputEdit *edit) {
}
#define EXPORT_PARSER(constructor_name) \
ts_parser constructor_name() { \
return (ts_parser) { \
TSParser constructor_name() { \
return (TSParser) { \
.parse_fn = ts_parse, \
.free_fn = ts_lr_parser_free, \
.symbol_names = ts_symbol_names, \