summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/compiler/expr.lm14
1 files changed, 9 insertions, 5 deletions
diff --git a/src/compiler/expr.lm b/src/compiler/expr.lm
index b763005..858adf4 100644
--- a/src/compiler/expr.lm
+++ b/src/compiler/expr.lm
@@ -23,7 +23,7 @@ context expr
context paren
literal `( `)
- token EXPR / (any - [()]) /
+ token EXPR / any /
def syntax
[EXPR] | [`( syntax `)]
@@ -37,8 +37,10 @@ context expr
end
context bracket
- literal `[ `] `? `:
- token EXPR / (any - '[' - ']' - ':') /
+ lex
+ literal `[ `] `? `:
+ token EXPR / any /
+ end
def syntax
[EXPR] | [`[ syntax `]] | [syntax `? syntax `: syntax]
@@ -52,8 +54,10 @@ context expr
end
context arg
- literal `( `)
- token EXPR / (any - [(),]) /
+ lex
+ literal `( `) `,
+ token EXPR / any /
+ end
def syntax
[EXPR] | [`( syntax `)]