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

@ -2,7 +2,7 @@
#include <string.h>
struct TSDocument {
ts_parser parser;
TSParser parser;
const TSTree *tree;
TSInput input;
size_t error_count;
@ -20,7 +20,7 @@ void ts_document_free(TSDocument *document) {
free(document);
}
void ts_document_set_parser(TSDocument *document, ts_parser parser) {
void ts_document_set_parser(TSDocument *document, TSParser parser) {
document->parser = parser;
}