<- Back to shtanton's homepage
aboutsummaryrefslogtreecommitdiff
path: root/subex/parse.go
diff options
context:
space:
mode:
Diffstat (limited to 'subex/parse.go')
-rw-r--r--subex/parse.go2
1 files changed, 2 insertions, 0 deletions
diff --git a/subex/parse.go b/subex/parse.go
index f5316c9..8b3a553 100644
--- a/subex/parse.go
+++ b/subex/parse.go
@@ -242,6 +242,8 @@ func parseSubex(l *RuneReader, minPower int) SubexAST {
lhs = SubexASTNegate {lhs}
case r == '/' && minPower <= 8:
lhs = SubexASTReciprocal {lhs}
+ case r == '!' && minPower <= 8:
+ lhs = SubexASTNot {lhs}
case r == '$' && minPower <= 8:
slot := l.next()
if slot == eof {