From 6ac6ad5933cf4c44431677f2ffd0a8f5eb382405 Mon Sep 17 00:00:00 2001 From: yui-knk Date: Tue, 5 Jun 2018 00:48:12 +0000 Subject: test_ast.rb: Add test cases of heredoc columns git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@63570 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- test/ruby/test_ast.rb | 12 ++++++++++++ 1 file changed, 12 insertions(+) (limited to 'test/ruby') diff --git a/test/ruby/test_ast.rb b/test/ruby/test_ast.rb index 7a60811ec0..5a9bded19b 100644 --- a/test/ruby/test_ast.rb +++ b/test/ruby/test_ast.rb @@ -138,4 +138,16 @@ class TestAst < Test::Unit::TestCase assert_equal("NODE_STR", node.type) assert_equal(0, node.first_column) end + + def test_column_of_heredoc + node = RubyVM::AST.parse("<<-SRC\nddddddd\nSRC\n").children[1] + assert_equal("NODE_STR", node.type) + assert_equal(0, node.first_column) + assert_equal(6, node.last_column) + + node = RubyVM::AST.parse("<