diff options
author | Chimrod <> | 2023-11-13 10:12:42 +0100 |
---|---|---|
committer | Chimrod <> | 2023-11-13 11:54:49 +0100 |
commit | 4ec7f0b73f8aa43eccf387bdec55fc464d809896 (patch) | |
tree | 9cf31bee4b23e4d48bdbd33bee49f2c25a6334a7 /lib/qparser/qsp_expression.mly | |
parent | 0d5bcaea3370697822675d9f8d25bca34c02505e (diff) |
Simplified the representation of expressions in strings
Diffstat (limited to 'lib/qparser/qsp_expression.mly')
-rw-r--r-- | lib/qparser/qsp_expression.mly | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/qparser/qsp_expression.mly b/lib/qparser/qsp_expression.mly index 9375701..1e0988f 100644 --- a/lib/qparser/qsp_expression.mly +++ b/lib/qparser/qsp_expression.mly @@ -46,8 +46,8 @@ } literal: | v = LITERAL { Qsp_syntax.T.Text v } - | e = delimited(ENTER_EMBED, expression*, LEAVE_EMBED) - { Qsp_syntax.T.Expression e } + | e = delimited(ENTER_EMBED, expression, LEAVE_EMBED) + { Qsp_syntax.T.Expression e } unary_operator: | OBJ |