cfe78a9b29
1. Semicolons were required in the wrong spot. 2. Make semicolons "invisible" (from the tree-sitter perspective). Signed-off-by: Will Hawkins <hawkinsw@obs.cr>
8 lines
171 B
Plaintext
8 lines
171 B
Plaintext
parser main_parser() {
|
|
state start {
|
|
bool where_to = true;
|
|
string where_from = where_to;
|
|
transition reject;
|
|
}
|
|
};
|