aboutsummaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
Diffstat (limited to 'lib')
-rw-r--r--lib/parser.mly5
-rw-r--r--lib/qsp_expression.mly2
2 files changed, 1 insertions, 6 deletions
diff --git a/lib/parser.mly b/lib/parser.mly
index c506e9c..35aebaf 100644
--- a/lib/parser.mly
+++ b/lib/parser.mly
@@ -1,11 +1,6 @@
%{
-
-
module T = Qsp_syntax.T
-
- let dummy_pos = (Lexing.dummy_pos, Lexing.dummy_pos)
-
%}
%parameter<Analyzer: Qsp_syntax.S.Analyzer>
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 }
}