mirror of
https://github.com/Sei-Lisa/LSL-PyOptimizer
synced 2025-07-01 23:58:20 +00:00
The grammar comment for simple_expr_except_list was missing IDENT
This commit is contained in:
parent
9c281dec64
commit
1df05ed0d7
1 changed files with 1 additions and 1 deletions
|
@ -2327,7 +2327,7 @@ list lazy_list_set(list L, integer i, list v)
|
||||||
|
|
||||||
simple_expr: simple_expr_except_list | list_simple_expr
|
simple_expr: simple_expr_except_list | list_simple_expr
|
||||||
simple_expr_except_list: STRING_VALUE | KEY_VALUE | VECTOR_VALUE
|
simple_expr_except_list: STRING_VALUE | KEY_VALUE | VECTOR_VALUE
|
||||||
| ROTATION_VALUE | TRUE | FALSE | number_value
|
| ROTATION_VALUE | TRUE | FALSE | IDENT | number_value
|
||||||
| '<' simple_expr ',' simple_expr ',' simple_expr '>'
|
| '<' simple_expr ',' simple_expr ',' simple_expr '>'
|
||||||
| '<' simple_expr ',' simple_expr ',' simple_expr ',' simple_expr '>'
|
| '<' simple_expr ',' simple_expr ',' simple_expr ',' simple_expr '>'
|
||||||
number_value: FLOAT_VALUE | INTEGER_VALUE | '-' FLOAT_VALUE | '-' INTEGER_VALUE
|
number_value: FLOAT_VALUE | INTEGER_VALUE | '-' FLOAT_VALUE | '-' INTEGER_VALUE
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue