diff --git a/lib/irb/cmd/show_source.rb b/lib/irb/cmd/show_source.rb index 0bd40b7d4..dcba1d1c7 100644 --- a/lib/irb/cmd/show_source.rb +++ b/lib/irb/cmd/show_source.rb @@ -59,11 +59,18 @@ def find_source(str) def find_end(file, first_line) return first_line unless File.exist?(file) lex = RubyLex.new - code = +"" - File.read(file).lines[(first_line - 1)..-1].each_with_index do |line, i| - _ltype, _indent, continue, code_block_open = lex.check_state(code << line) + lines = File.read(file).lines[(first_line - 1)..-1] + tokens = RubyLex.ripper_lex_without_warning(lines.join) + prev_tokens = [] + + # chunk with line number + tokens.chunk { |tok| tok[0][0] }.each do |lnum, chunk| + code = lines[0..lnum].join + prev_tokens.concat chunk + continue = lex.process_continue(prev_tokens) + code_block_open = lex.check_code_block(code, prev_tokens) if !continue && !code_block_open - return first_line + i + return first_line + lnum end end first_line