summaryrefslogtreecommitdiff
path: root/parse.y
diff options
context:
space:
mode:
authornobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2002-09-10 14:38:20 +0000
committernobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2002-09-10 14:38:20 +0000
commit64bdb0c395d0e7c21a833dcba6df33a7e89fc33c (patch)
treeb84a01d3b622a524e6dd61af7c4e7f20074bb1f3 /parse.y
parent3374d203c176f95a254cfe817fe571c905fd9389 (diff)
* parse.y (nextc): restore line number after here documents.
(ruby-bugs-ja:PR#331) * parse.y (heredoc_restore): ditto. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@2836 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'parse.y')
-rw-r--r--parse.y8
1 files changed, 8 insertions, 0 deletions
diff --git a/parse.y b/parse.y
index 3e9d47eea1..6eedddc6d1 100644
--- a/parse.y
+++ b/parse.y
@@ -2323,6 +2323,7 @@ yyerror(msg)
return 0;
}
+static int heredoc_end;
static int command_start = Qtrue;
int ruby_in_compile = 0;
@@ -2363,6 +2364,7 @@ yycompile(f, line)
ruby__end__seen = 0;
ruby_eval_tree = 0;
+ heredoc_end = 0;
lex_strterm = 0;
lex_strnest = 0;
quoted_term = -1;
@@ -2473,6 +2475,10 @@ nextc()
VALUE v = lex_getline();
if (NIL_P(v)) return -1;
+ if (heredoc_end > 0) {
+ ruby_sourceline = heredoc_end;
+ heredoc_end = 0;
+ }
ruby_sourceline++;
lex_pbeg = lex_p = RSTRING(v)->ptr;
lex_pend = lex_p + RSTRING(v)->len;
@@ -2989,6 +2995,8 @@ heredoc_restore(here)
lex_pbeg = RSTRING(line)->ptr;
lex_pend = lex_pbeg + RSTRING(line)->len;
lex_p = lex_pbeg + here->nd_nth;
+ heredoc_end = ruby_sourceline;
+ ruby_sourceline = nd_line(here);
rb_gc_force_recycle(here->nd_lit);
rb_gc_force_recycle((VALUE)here);
}