tree-sitter/src/compiler/rules/built_in_symbols.cc
2015-08-22 10:48:34 -07:00

19 lines
307 B
C++

#include "compiler/rules/built_in_symbols.h"
namespace tree_sitter {
namespace rules {
Symbol END_OF_INPUT() {
return Symbol(-1, SymbolOptionToken);
}
Symbol ERROR() {
return Symbol(-2, SymbolOptionToken);
}
Symbol START() {
return Symbol(-3);
}
} // namespace rules
} // namespace tree_sitter