Skip to content
Snippets Groups Projects
Commit 92b5700e authored by Heiko Becker's avatar Heiko Becker
Browse files

Fix bug in environment parser

parent 28b09555
Branches
Tags
No related merge requests found
...@@ -438,7 +438,7 @@ val parseGammaRec_def = tDefine "parseGammaRec" ...@@ -438,7 +438,7 @@ val parseGammaRec_def = tDefine "parseGammaRec"
|NONE => SOME (defaultGamma, input) |NONE => SOME (defaultGamma, input)
|SOME (e,residual) => |SOME (e,residual) =>
(case residual of (case residual of
| DCONST n :: DTYPE m :: inputRest => | DTYPE m :: inputRest =>
(case parseGammaRec inputRest of (case parseGammaRec inputRest of
| SOME (Gamma, rest) => | SOME (Gamma, rest) =>
SOME (FloverMapTree_insert e m Gamma, rest) SOME (FloverMapTree_insert e m Gamma, rest)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment