diff options
author | Chimrod <> | 2023-09-24 12:51:35 +0200 |
---|---|---|
committer | Chimrod <> | 2023-09-24 12:51:35 +0200 |
commit | afe13e92cf46e0bd4bf493bd0896f9fc0152ff37 (patch) | |
tree | 109933e3e527bd3e5d90b8b8572fe22967067351 /lib/qsp_expression.mly | |
parent | e21c752ccd0d3d73921beddb671aa48429c2dd90 (diff) |
Variable without index are now evaluated as well
Diffstat (limited to 'lib/qsp_expression.mly')
-rw-r--r-- | lib/qsp_expression.mly | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/qsp_expression.mly b/lib/qsp_expression.mly index d1680f3..3d758c4 100644 --- a/lib/qsp_expression.mly +++ b/lib/qsp_expression.mly @@ -81,7 +81,7 @@ unary_operator: let index = match brackets with | None -> (* No declaration, consider index at 0 *) - Some (Analyzer.Expression.integer dummy_pos "0") + None | Some other -> other in Analyzer.Expression.{ pos = $loc ; name ; index } } |