From 1df05ed0d7f5f3424eb85050a70b21e702f4f5a6 Mon Sep 17 00:00:00 2001 From: Sei Lisa Date: Mon, 31 Oct 2022 17:20:25 +0100 Subject: [PATCH] The grammar comment for simple_expr_except_list was missing IDENT --- lslopt/lslparse.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lslopt/lslparse.py b/lslopt/lslparse.py index 8d98029..7ee0117 100644 --- a/lslopt/lslparse.py +++ b/lslopt/lslparse.py @@ -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_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 '>' number_value: FLOAT_VALUE | INTEGER_VALUE | '-' FLOAT_VALUE | '-' INTEGER_VALUE