diff options
| author | Jan Tuomi <jans.tuomi@gmail.com> | 2022-12-08 11:43:37 +0200 |
|---|---|---|
| committer | Jan Tuomi <jans.tuomi@gmail.com> | 2022-12-08 11:43:37 +0200 |
| commit | d91979adb9dc6eaa96f37ac0af337fed1aed08af (patch) | |
| tree | 591b4ea12fab099690402f143ee5cbc9b1b1edc3 /src/Utils.hs | |
| parent | ea160e993a7196d0f5aa6749b1ea046f16cf0546 (diff) | |
Use Integer instead of Int in ASTInteger
Diffstat (limited to 'src/Utils.hs')
| -rw-r--r-- | src/Utils.hs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Utils.hs b/src/Utils.hs index e4b2333..0f0654c 100644 --- a/src/Utils.hs +++ b/src/Utils.hs @@ -124,7 +124,7 @@ type LFunction = AST -> LContext AST type LRecord = M.Map String AST data ASTNode - = ASTInteger Int + = ASTInteger Integer | ASTDouble Double | ASTSymbol String | ASTBoolean Bool |
