Remove spurious semicolons
This commit is contained in:
parent
661314cf4e
commit
de5deeeb69
10 changed files with 13 additions and 12 deletions
|
|
@ -60,10 +60,11 @@ namespace tree_sitter {
|
|||
return "ts_builtin_sym_error";
|
||||
else
|
||||
return "ts_builtin_sym_end";
|
||||
} else if (symbol.is_auxiliary())
|
||||
} else if (symbol.is_auxiliary()) {
|
||||
return "ts_aux_sym_" + symbol.name;
|
||||
else
|
||||
} else {
|
||||
return "ts_sym_" + symbol.name;
|
||||
}
|
||||
}
|
||||
|
||||
string character_code(char character) {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue