summaryrefslogtreecommitdiff
path: root/test/rubyhere.lm
diff options
context:
space:
mode:
Diffstat (limited to 'test/rubyhere.lm')
-rw-r--r--test/rubyhere.lm6
1 files changed, 3 insertions, 3 deletions
diff --git a/test/rubyhere.lm b/test/rubyhere.lm
index 7a39b96b..2587ecd9 100644
--- a/test/rubyhere.lm
+++ b/test/rubyhere.lm
@@ -33,7 +33,7 @@ lex here_start
input.push( $ROL )
# Send the here_id token. Attach the heredoc data as an attribute.
- input.push( make_token( typeid here_id, HereId, HereData ) )
+ input.push( make_token( typeid here_id HereId HereData ) )
}
}
@@ -44,11 +44,11 @@ lex here_data
{
if match_text == HereId + '\n' {
input.push( make_token(
- typeid here_close_id,
+ typeid here_close_id
input.pull( match_length ) ) )
}
else
- input.push( make_token( typeid here_line, input.pull(match_length) ) )
+ input.push( make_token( typeid here_line input.pull(match_length) ) )
}
token here_line