aboutsummaryrefslogtreecommitdiffstats
path: root/src/Utils.hs
diff options
context:
space:
mode:
authorJan Tuomi <jans.tuomi@gmail.com>2022-12-09 18:55:21 +0200
committerJan Tuomi <jans.tuomi@gmail.com>2022-12-09 18:55:21 +0200
commit8ba98a86805c886719057f9df0d5a74c58c6dabd (patch)
tree8bb5a0890f9a69c01ff219553750058b5da82476 /src/Utils.hs
parentcff5a0dfa89ab3a7f95512382cedf88f8e1709d1 (diff)
Add do builtin
Diffstat (limited to 'src/Utils.hs')
-rw-r--r--src/Utils.hs1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/Utils.hs b/src/Utils.hs
index 379740d..76b3830 100644
--- a/src/Utils.hs
+++ b/src/Utils.hs
@@ -188,6 +188,7 @@ instance (Eq ASTNode) where
ASTVector a == ASTVector b = a == b
ASTFunctionCall a == ASTFunctionCall b = a == b
ASTHashMap a == ASTHashMap b = a == b
+ ASTRecord ah _ hma == ASTRecord bh _ hmb = ah == bh && hma == hmb
ASTUnit == ASTUnit = True
ASTHole == _ = True
_ == ASTHole = True