diff options
author | Chimrod <> | 2023-10-07 12:24:37 +0200 |
---|---|---|
committer | Chimrod <> | 2023-10-18 09:49:47 +0200 |
commit | c2f87ff1e6e5676968804cd50b86fc2f0f9ad672 (patch) | |
tree | ab0770cc70bbe6ed26606200110cc503390ac420 /lib/qparser/qsp_expression.mly | |
parent | a70c88bd727c7938c3d8d1355bf5474546d7d72e (diff) |
Made explicit the use of the report in the parser
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 06cfadd..799be31 100644 --- a/lib/qparser/qsp_expression.mly +++ b/lib/qparser/qsp_expression.mly @@ -20,7 +20,7 @@ *) %inline argument(X): - | a = delimited(L_PAREN, arguments(X), R_PAREN) { a } + | a = delimited(L_PAREN, arguments(X), R_PAREN) { a } | a = X { [ a ] } (** Declare an expression *) @@ -82,5 +82,5 @@ unary_operator: (* No declaration, consider index at 0 *) None | Some other -> other in - Analyzer.Expression.{ pos = $loc ; name ; index } + Qsp_syntax.S.{ pos = $loc ; name ; index } } |