summaryrefslogtreecommitdiff
path: root/test/heredoc.lm
diff options
context:
space:
mode:
authorAdrian Thurston <thurston@complang.org>2011-03-30 19:04:01 +0000
committerAdrian Thurston <thurston@complang.org>2011-03-30 19:04:01 +0000
commite2d471562ef5e0488c17fe8a874bb6d6f32c7bfe (patch)
tree1dcbff982296e72e2bb2474dfeb9a70d5395c67e /test/heredoc.lm
parentfb5430c9c2cf2ad1570150316e969ab142288b58 (diff)
downloadcolm-e2d471562ef5e0488c17fe8a874bb6d6f32c7bfe.tar.gz
Commas gone from expression lists. Now consistent with constructors, patterns,
and parameter lists. refs #246.
Diffstat (limited to 'test/heredoc.lm')
-rw-r--r--test/heredoc.lm4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/heredoc.lm b/test/heredoc.lm
index a8f7e149..59ae2bd8 100644
--- a/test/heredoc.lm
+++ b/test/heredoc.lm
@@ -11,11 +11,11 @@ lex start
{
if HereId && HereId == match_text {
input.push( make_token(
- typeid here_close,
+ typeid here_close
input.pull(match_length - 1) ) )
}
else {
- input.push( make_token( typeid id, input.pull(match_length) ) )
+ input.push( make_token( typeid id input.pull(match_length) ) )
}
}