diff options
author | Chimrod <> | 2023-10-22 07:14:20 +0200 |
---|---|---|
committer | Chimrod <> | 2023-10-25 17:56:30 +0200 |
commit | 2a2198e91063684a1b19974acc19c25b55266724 (patch) | |
tree | b43e4b1b62c61fd828a53d6b261c790ffa797ae0 /test/syntax.ml | |
parent | 2cad3abf180c14e0c026033d65f4fb895b5348f7 (diff) |
Refactoring the API
Diffstat (limited to 'test/syntax.ml')
-rw-r--r-- | test/syntax.ml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/syntax.ml b/test/syntax.ml index a420035..56fac8e 100644 --- a/test/syntax.ml +++ b/test/syntax.ml @@ -3,7 +3,7 @@ module Ast = Tree.Ast module Check = Qsp_syntax.Check module S = Qsp_syntax.S -let _, _, location_id, e1 = Check.build (module Tree) +let location_id, e1 = Check.build (module Tree) module Parser = Check.Make (struct let t = [| e1 |] |