From 5de38c41ae7bf17ae599fdfa9f8face87f16d8bb Mon Sep 17 00:00:00 2001 From: Shugo Maeda Date: Fri, 19 Feb 2021 16:38:34 +0900 Subject: ripper: fix a bug of Ripper::Lexer with syntax error and heredoc [Bug #17644] --- test/ripper/test_lexer.rb | 12 ++++++++++++ 1 file changed, 12 insertions(+) (limited to 'test') diff --git a/test/ripper/test_lexer.rb b/test/ripper/test_lexer.rb index 79cb194e5b..d0389f7c96 100644 --- a/test/ripper/test_lexer.rb +++ b/test/ripper/test_lexer.rb @@ -216,4 +216,16 @@ class TestRipper::Lexer < Test::Unit::TestCase end end end + + def test_lex_with_syntax_error_and_heredo + bug = '[Bug #17644]' + s = <<~EOF + foo + end + <<~EOS + bar + EOS + EOF + assert_equal([[5, 0], :on_heredoc_end, "EOS\n", state(:EXPR_BEG)], Ripper.lex(s).last, bug) + end end -- cgit v1.2.3