summaryrefslogtreecommitdiff
path: root/test/undofrag3.lm
diff options
context:
space:
mode:
authorAdrian Thurston <thurston@complang.org>2012-07-16 08:40:59 -0400
committerAdrian Thurston <thurston@complang.org>2012-07-16 08:40:59 -0400
commit8197dbc598378f0195de6c28d4c3edfebfbccfaf (patch)
tree4b4ec8eb6b5e888b3ff880c4008f601e4728e2d2 /test/undofrag3.lm
parentb78e265efd244fe3dcee35ea41811a434092c83d (diff)
downloadcolm-8197dbc598378f0195de6c28d4c3edfebfbccfaf.tar.gz
updated tests to match send (accum) syntax change
Must wrap items sent to a parser using [].
Diffstat (limited to 'test/undofrag3.lm')
-rw-r--r--test/undofrag3.lm8
1 files changed, 4 insertions, 4 deletions
diff --git a/test/undofrag3.lm b/test/undofrag3.lm
index dc89d537..3fbd7d2b 100644
--- a/test/undofrag3.lm
+++ b/test/undofrag3.lm
@@ -17,13 +17,13 @@ def out
def item
[id]
{
- send Out r1
+ send Out [r1]
}
| ['(' item* ')']
{
- send Out '('
- send Out r2
- send Out ')'
+ send Out ['(']
+ send Out [r2]
+ send Out [')']
}
def A1 []