tree-sitter/src/compiler/rules/built_in_symbols.cc
2015-07-31 16:32:24 -07:00

23 lines
351 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);
}
Symbol DOCUMENT() {
return Symbol(-4);
}
} // namespace rules
} // namespace tree_sitter