mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
[ripper] fix mismatched indentations warning [Bug #16981]
The scanner location has to be set from `lex.ptok` before it is flushed by dispatching the scanner event.
This commit is contained in:
parent
7f29e34f35
commit
263b941321
2 changed files with 11 additions and 4 deletions
9
parse.y
9
parse.y
|
@ -9662,16 +9662,17 @@ yylex(YYSTYPE *lval, YYLTYPE *yylloc, struct parser_params *p)
|
|||
p->lval = lval;
|
||||
lval->val = Qundef;
|
||||
t = parser_yylex(p);
|
||||
if (has_delayed_token(p))
|
||||
dispatch_delayed_token(p, t);
|
||||
else if (t != 0)
|
||||
dispatch_scan_event(p, t);
|
||||
|
||||
if (p->lex.strterm && (p->lex.strterm->flags & STRTERM_HEREDOC))
|
||||
RUBY_SET_YYLLOC_FROM_STRTERM_HEREDOC(*yylloc);
|
||||
else
|
||||
RUBY_SET_YYLLOC(*yylloc);
|
||||
|
||||
if (has_delayed_token(p))
|
||||
dispatch_delayed_token(p, t);
|
||||
else if (t != 0)
|
||||
dispatch_scan_event(p, t);
|
||||
|
||||
return t;
|
||||
}
|
||||
|
||||
|
|
|
@ -1538,6 +1538,12 @@ class TestRipper::ParserEvents < Test::Unit::TestCase
|
|||
assert_match(/encountered/, fmt)
|
||||
end
|
||||
|
||||
def test_warn_mismatched_indentations
|
||||
fmt, tokend, tokbeg, line = assert_warning("") {break warn("if true\n end\n")}
|
||||
assert_match(/mismatched indentations/, fmt)
|
||||
assert_equal(["if", "end", 1], [tokbeg, tokend, line])
|
||||
end
|
||||
|
||||
def test_in
|
||||
thru_in = false
|
||||
parse('case 0; in 0; end', :on_in) {thru_in = true}
|
||||
|
|
Loading…
Reference in a new issue