diff options
author | Chimrod <> | 2024-02-03 17:42:16 +0100 |
---|---|---|
committer | Chimrod <> | 2024-02-08 14:16:41 +0100 |
commit | d7a13b0e5d6e746993e67a291376bd79766e0ed1 (patch) | |
tree | 80c621cbdb97ce69fd666a4e8f90f4952d237027 /lib/qparser | |
parent | 6fd720c07e3e361932e01bfbdbe4637c8f610649 (diff) |
Added a new check to ensure that every call to another location points to an existing one
Diffstat (limited to 'lib/qparser')
-rw-r--r-- | lib/qparser/parser.mly | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/qparser/parser.mly b/lib/qparser/parser.mly index 9501884..5c83fc2 100644 --- a/lib/qparser/parser.mly +++ b/lib/qparser/parser.mly @@ -9,7 +9,7 @@ ; body : Analyzer.Instruction.t list ; pos : Qsp_syntax.S.pos ; clauses : ( - ( (Analyzer.Instruction.expression, Analyzer.Instruction.t) Qsp_syntax.S.clause list + ( (Analyzer.Expression.t', Analyzer.Instruction.t) Qsp_syntax.S.clause list * (Qsp_syntax.S.pos * Analyzer.Instruction.t list) option ) option ) } |