renamed "stringliteral" to "string_literal"

This commit is contained in:
Erik Krogh Kristensen
2020-09-04 11:53:30 +02:00
parent 960576438c
commit 91c3e51503
3 changed files with 5 additions and 5 deletions

View File

@@ -240,7 +240,7 @@ case @expr.kind of
| 1 = @null_literal
| 2 = @boolean_literal
| 3 = @number_literal
| 4 = @stringliteral
| 4 = @string_literal
| 5 = @regexpliteral
| 6 = @thisexpr
| 7 = @arrayexpr
@@ -361,7 +361,7 @@ case @expr.kind of
@identifier = @label | @varref | @typeidentifier;
@literal = @null_literal | @boolean_literal | @number_literal | @stringliteral | @regexpliteral | @bigintliteral;
@literal = @null_literal | @boolean_literal | @number_literal | @string_literal | @regexpliteral | @bigintliteral;
@propaccess = @dotexpr | @indexexpr;
@@ -832,7 +832,7 @@ regexpterm (unique int id: @regexpterm,
int idx: int ref,
varchar(900) tostring: string ref);
@regexpparent = @regexpterm | @regexpliteral | @stringliteral;
@regexpparent = @regexpterm | @regexpliteral | @string_literal;
case @regexpterm.kind of
0 = @regexp_alt