aboutsummaryrefslogtreecommitdiff
path: root/src/AST.hs
diff options
context:
space:
mode:
Diffstat (limited to 'src/AST.hs')
-rw-r--r--src/AST.hs1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/AST.hs b/src/AST.hs
index 2048e87..76b39b6 100644
--- a/src/AST.hs
+++ b/src/AST.hs
@@ -32,6 +32,7 @@ data Pattern t
| PVar t Name
| PAs t Name (Pattern t)
| PCon t Name [Pattern t]
+ | POp t (Pattern t) Operator (Pattern t)
| PList t [Pattern t]
| PTup t [Pattern t]
deriving (Show)