From 4ec7f0b73f8aa43eccf387bdec55fc464d809896 Mon Sep 17 00:00:00 2001 From: Chimrod <> Date: Mon, 13 Nov 2023 10:12:42 +0100 Subject: Simplified the representation of expressions in strings --- lib/qparser/qsp_expression.mly | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'lib/qparser') 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 -- cgit v1.2.3