2015-12-16 00:07:31 -05:00
|
|
|
# frozen_string_literal: false
|
2000-05-12 05:07:57 -04:00
|
|
|
#
|
2008-06-04 05:37:38 -04:00
|
|
|
# irb/ruby-lex.rb - ruby lexcal analyzer
|
2009-07-07 07:36:20 -04:00
|
|
|
# $Release Version: 0.9.6$
|
2000-05-12 05:07:57 -04:00
|
|
|
# $Revision$
|
2005-04-13 11:27:09 -04:00
|
|
|
# by Keiju ISHITSUKA(keiju@ruby-lang.org)
|
2000-05-12 05:07:57 -04:00
|
|
|
#
|
|
|
|
# --
|
|
|
|
#
|
2009-03-05 22:56:38 -05:00
|
|
|
#
|
2000-05-12 05:07:57 -04:00
|
|
|
#
|
|
|
|
|
2019-04-27 14:41:06 -04:00
|
|
|
require "ripper"
|
2020-03-27 22:15:01 -04:00
|
|
|
require "jruby" if RUBY_ENGINE == "jruby"
|
2000-05-12 05:07:57 -04:00
|
|
|
|
2012-12-13 00:22:30 -05:00
|
|
|
# :stopdoc:
|
2000-05-12 05:07:57 -04:00
|
|
|
class RubyLex
|
|
|
|
|
2019-11-24 15:38:09 -05:00
|
|
|
class TerminateLineInput < StandardError
|
|
|
|
def initialize
|
|
|
|
super("Terminate Line Input")
|
|
|
|
end
|
|
|
|
end
|
2009-03-05 22:56:38 -05:00
|
|
|
|
2000-05-12 05:07:57 -04:00
|
|
|
def initialize
|
|
|
|
@exp_line_no = @line_no = 1
|
|
|
|
@indent = 0
|
2005-04-13 11:27:09 -04:00
|
|
|
@continue = false
|
|
|
|
@line = ""
|
2004-11-03 06:34:57 -05:00
|
|
|
@prompt = nil
|
2000-05-12 05:07:57 -04:00
|
|
|
end
|
|
|
|
|
2020-05-31 19:53:07 -04:00
|
|
|
def self.compile_with_errors_suppressed(code)
|
2020-06-07 10:29:01 -04:00
|
|
|
line_no = 1
|
2020-05-31 19:53:07 -04:00
|
|
|
begin
|
2020-06-07 10:29:01 -04:00
|
|
|
result = yield code, line_no
|
2020-07-23 10:44:25 -04:00
|
|
|
rescue ArgumentError
|
2020-06-07 10:29:01 -04:00
|
|
|
code = ";\n#{code}"
|
|
|
|
line_no = 0
|
|
|
|
result = yield code, line_no
|
2020-05-31 19:53:07 -04:00
|
|
|
end
|
|
|
|
result
|
|
|
|
end
|
|
|
|
|
2000-05-12 05:07:57 -04:00
|
|
|
# io functions
|
2003-06-10 01:36:35 -04:00
|
|
|
def set_input(io, p = nil, &block)
|
2000-05-12 05:07:57 -04:00
|
|
|
@io = io
|
2019-04-27 14:41:06 -04:00
|
|
|
if @io.respond_to?(:check_termination)
|
|
|
|
@io.check_termination do |code|
|
2019-04-27 17:37:39 -04:00
|
|
|
code.gsub!(/\s*\z/, '').concat("\n")
|
2019-06-13 19:26:06 -04:00
|
|
|
ltype, indent, continue, code_block_open = check_state(code)
|
|
|
|
if ltype or indent > 0 or continue or code_block_open
|
2019-04-27 14:41:06 -04:00
|
|
|
false
|
|
|
|
else
|
|
|
|
true
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
2019-06-13 19:26:06 -04:00
|
|
|
if @io.respond_to?(:dynamic_prompt)
|
2019-06-16 01:46:22 -04:00
|
|
|
@io.dynamic_prompt do |lines|
|
2019-06-13 19:26:06 -04:00
|
|
|
lines << '' if lines.empty?
|
|
|
|
result = []
|
|
|
|
lines.each_index { |i|
|
|
|
|
c = lines[0..i].map{ |l| l + "\n" }.join
|
2019-07-03 10:37:46 -04:00
|
|
|
ltype, indent, continue, code_block_open = check_state(c)
|
|
|
|
result << @prompt.call(ltype, indent, continue || code_block_open, @line_no + i)
|
2019-06-13 19:26:06 -04:00
|
|
|
}
|
|
|
|
result
|
|
|
|
end
|
|
|
|
end
|
2019-06-18 20:19:41 -04:00
|
|
|
if p.respond_to?(:call)
|
|
|
|
@input = p
|
|
|
|
elsif block_given?
|
|
|
|
@input = block
|
|
|
|
else
|
|
|
|
@input = Proc.new{@io.gets}
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
def set_prompt(p = nil, &block)
|
|
|
|
p = block if block_given?
|
|
|
|
if p.respond_to?(:call)
|
|
|
|
@prompt = p
|
|
|
|
else
|
|
|
|
@prompt = Proc.new{print p}
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2019-11-13 01:10:05 -05:00
|
|
|
def ripper_lex_without_warning(code)
|
|
|
|
verbose, $VERBOSE = $VERBOSE, nil
|
2020-11-20 18:40:31 -05:00
|
|
|
tokens = []
|
2020-06-07 10:29:01 -04:00
|
|
|
self.class.compile_with_errors_suppressed(code) do |inner_code, line_no|
|
2020-11-20 18:40:31 -05:00
|
|
|
lexer = Ripper::Lexer.new(inner_code, '-', line_no)
|
|
|
|
until (ts = lexer.lex).empty?
|
|
|
|
tokens.concat(ts)
|
|
|
|
end
|
2020-05-31 19:53:07 -04:00
|
|
|
end
|
2019-11-13 01:10:05 -05:00
|
|
|
$VERBOSE = verbose
|
|
|
|
tokens
|
|
|
|
end
|
|
|
|
|
2019-06-18 20:19:41 -04:00
|
|
|
def set_auto_indent(context)
|
|
|
|
if @io.respond_to?(:auto_indent) and context.auto_indent_mode
|
2019-06-18 07:57:58 -04:00
|
|
|
@io.auto_indent do |lines, line_index, byte_pointer, is_newline|
|
|
|
|
if is_newline
|
|
|
|
md = lines[line_index - 1].match(/(\A +)/)
|
|
|
|
prev_spaces = md.nil? ? 0 : md[1].count(' ')
|
2019-11-13 01:10:05 -05:00
|
|
|
@tokens = ripper_lex_without_warning(lines[0..line_index].join("\n"))
|
2019-06-25 09:07:32 -04:00
|
|
|
depth_difference = check_newline_depth_difference
|
|
|
|
prev_spaces + depth_difference * 2
|
2019-06-18 07:57:58 -04:00
|
|
|
else
|
|
|
|
code = line_index.zero? ? '' : lines[0..(line_index - 1)].map{ |l| l + "\n" }.join
|
2019-06-18 08:56:41 -04:00
|
|
|
last_line = lines[line_index]&.byteslice(0, byte_pointer)
|
|
|
|
code += last_line if last_line
|
2019-11-13 01:10:05 -05:00
|
|
|
@tokens = ripper_lex_without_warning(code)
|
2019-06-24 10:58:50 -04:00
|
|
|
corresponding_token_depth = check_corresponding_token_depth
|
2019-06-21 08:31:56 -04:00
|
|
|
if corresponding_token_depth
|
|
|
|
corresponding_token_depth
|
2019-06-18 07:57:58 -04:00
|
|
|
else
|
|
|
|
nil
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
2000-05-12 05:07:57 -04:00
|
|
|
end
|
|
|
|
|
2019-06-13 19:26:06 -04:00
|
|
|
def check_state(code)
|
2019-11-13 01:10:05 -05:00
|
|
|
@tokens = ripper_lex_without_warning(code)
|
2019-06-13 19:26:06 -04:00
|
|
|
ltype = process_literal_type
|
|
|
|
indent = process_nesting_level
|
|
|
|
continue = process_continue
|
|
|
|
code_block_open = check_code_block(code)
|
|
|
|
[ltype, indent, continue, code_block_open]
|
|
|
|
end
|
|
|
|
|
2000-05-12 05:07:57 -04:00
|
|
|
def prompt
|
|
|
|
if @prompt
|
|
|
|
@prompt.call(@ltype, @indent, @continue, @line_no)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
def initialize_input
|
|
|
|
@ltype = nil
|
|
|
|
@indent = 0
|
2001-02-02 06:38:20 -05:00
|
|
|
@continue = false
|
2000-05-12 05:07:57 -04:00
|
|
|
@line = ""
|
|
|
|
@exp_line_no = @line_no
|
2019-04-27 14:41:06 -04:00
|
|
|
@code_block_open = false
|
2000-05-12 05:07:57 -04:00
|
|
|
end
|
2009-03-05 22:56:38 -05:00
|
|
|
|
2000-05-12 05:07:57 -04:00
|
|
|
def each_top_level_statement
|
|
|
|
initialize_input
|
2001-05-08 05:28:19 -04:00
|
|
|
catch(:TERM_INPUT) do
|
|
|
|
loop do
|
2014-08-08 21:36:49 -04:00
|
|
|
begin
|
|
|
|
prompt
|
|
|
|
unless l = lex
|
|
|
|
throw :TERM_INPUT if @line == ''
|
|
|
|
else
|
2019-06-16 01:46:22 -04:00
|
|
|
@line_no += l.count("\n")
|
2019-04-27 14:41:06 -04:00
|
|
|
next if l == "\n"
|
2014-08-08 21:36:49 -04:00
|
|
|
@line.concat l
|
2019-04-27 14:41:06 -04:00
|
|
|
if @code_block_open or @ltype or @continue or @indent > 0
|
2014-08-08 21:36:49 -04:00
|
|
|
next
|
|
|
|
end
|
|
|
|
end
|
|
|
|
if @line != "\n"
|
2010-11-03 01:23:56 -04:00
|
|
|
@line.force_encoding(@io.encoding)
|
2014-08-08 21:36:49 -04:00
|
|
|
yield @line, @exp_line_no
|
|
|
|
end
|
2019-05-26 21:18:09 -04:00
|
|
|
break if @io.eof?
|
2014-08-08 21:36:49 -04:00
|
|
|
@line = ''
|
|
|
|
@exp_line_no = @line_no
|
|
|
|
|
|
|
|
@indent = 0
|
|
|
|
rescue TerminateLineInput
|
|
|
|
initialize_input
|
|
|
|
prompt
|
|
|
|
end
|
2000-05-12 05:07:57 -04:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
def lex
|
2019-04-27 14:41:06 -04:00
|
|
|
line = @input.call
|
|
|
|
if @io.respond_to?(:check_termination)
|
|
|
|
return line # multiline
|
|
|
|
end
|
|
|
|
code = @line + (line.nil? ? '' : line)
|
2019-04-27 17:37:39 -04:00
|
|
|
code.gsub!(/\s*\z/, '').concat("\n")
|
2019-11-13 01:10:05 -05:00
|
|
|
@tokens = ripper_lex_without_warning(code)
|
2019-04-27 14:41:06 -04:00
|
|
|
@continue = process_continue
|
|
|
|
@code_block_open = check_code_block(code)
|
|
|
|
@indent = process_nesting_level
|
|
|
|
@ltype = process_literal_type
|
|
|
|
line
|
2019-04-23 08:55:29 -04:00
|
|
|
end
|
|
|
|
|
2019-04-27 14:41:06 -04:00
|
|
|
def process_continue
|
|
|
|
# last token is always newline
|
|
|
|
if @tokens.size >= 2 and @tokens[-2][1] == :on_regexp_end
|
|
|
|
# end of regexp literal
|
|
|
|
return false
|
|
|
|
elsif @tokens.size >= 2 and @tokens[-2][1] == :on_semicolon
|
|
|
|
return false
|
2019-06-26 02:01:01 -04:00
|
|
|
elsif @tokens.size >= 2 and @tokens[-2][1] == :on_kw and ['begin', 'else', 'ensure'].include?(@tokens[-2][2])
|
2019-04-27 14:41:06 -04:00
|
|
|
return false
|
|
|
|
elsif !@tokens.empty? and @tokens.last[2] == "\\\n"
|
|
|
|
return true
|
2019-05-30 02:34:41 -04:00
|
|
|
elsif @tokens.size >= 1 and @tokens[-1][1] == :on_heredoc_end # "EOH\n"
|
|
|
|
return false
|
2019-06-12 11:29:45 -04:00
|
|
|
elsif @tokens.size >= 2 and defined?(Ripper::EXPR_BEG) and @tokens[-2][3].anybits?(Ripper::EXPR_BEG | Ripper::EXPR_FNAME)
|
2019-04-27 14:41:06 -04:00
|
|
|
# end of literal except for regexp
|
|
|
|
return true
|
|
|
|
end
|
|
|
|
false
|
2019-04-23 08:55:29 -04:00
|
|
|
end
|
|
|
|
|
2019-04-27 14:41:06 -04:00
|
|
|
def check_code_block(code)
|
|
|
|
return true if @tokens.empty?
|
|
|
|
if @tokens.last[1] == :on_heredoc_beg
|
|
|
|
return true
|
|
|
|
end
|
|
|
|
|
|
|
|
begin # check if parser error are available
|
2019-05-27 12:30:15 -04:00
|
|
|
verbose, $VERBOSE = $VERBOSE, nil
|
2019-07-26 01:37:11 -04:00
|
|
|
case RUBY_ENGINE
|
2020-11-05 12:08:04 -05:00
|
|
|
when 'ruby'
|
|
|
|
self.class.compile_with_errors_suppressed(code) do |inner_code, line_no|
|
|
|
|
RubyVM::InstructionSequence.compile(inner_code, nil, nil, line_no)
|
|
|
|
end
|
2019-07-26 01:37:11 -04:00
|
|
|
when 'jruby'
|
|
|
|
JRuby.compile_ir(code)
|
|
|
|
else
|
2020-11-05 12:08:04 -05:00
|
|
|
catch(:valid) do
|
|
|
|
eval("BEGIN { throw :valid, true }\n#{code}")
|
|
|
|
false
|
2020-05-31 19:53:07 -04:00
|
|
|
end
|
2019-07-26 01:37:11 -04:00
|
|
|
end
|
2020-03-26 03:43:16 -04:00
|
|
|
rescue EncodingError
|
|
|
|
# This is for a hash with invalid encoding symbol, {"\xAE": 1}
|
2019-04-27 14:41:06 -04:00
|
|
|
rescue SyntaxError => e
|
|
|
|
case e.message
|
|
|
|
when /unterminated (?:string|regexp) meets end of file/
|
|
|
|
# "unterminated regexp meets end of file"
|
|
|
|
#
|
|
|
|
# example:
|
|
|
|
# /
|
|
|
|
#
|
|
|
|
# "unterminated string meets end of file"
|
|
|
|
#
|
|
|
|
# example:
|
|
|
|
# '
|
|
|
|
return true
|
|
|
|
when /syntax error, unexpected end-of-input/
|
|
|
|
# "syntax error, unexpected end-of-input, expecting keyword_end"
|
|
|
|
#
|
|
|
|
# example:
|
|
|
|
# if ture
|
|
|
|
# hoge
|
|
|
|
# if false
|
|
|
|
# fuga
|
|
|
|
# end
|
|
|
|
return true
|
|
|
|
when /syntax error, unexpected keyword_end/
|
|
|
|
# "syntax error, unexpected keyword_end"
|
|
|
|
#
|
|
|
|
# example:
|
|
|
|
# if (
|
|
|
|
# end
|
|
|
|
#
|
|
|
|
# example:
|
|
|
|
# end
|
|
|
|
return false
|
2019-05-21 05:36:10 -04:00
|
|
|
when /syntax error, unexpected '\.'/
|
|
|
|
# "syntax error, unexpected '.'"
|
|
|
|
#
|
|
|
|
# example:
|
|
|
|
# .
|
|
|
|
return false
|
2019-04-27 14:41:06 -04:00
|
|
|
when /unexpected tREGEXP_BEG/
|
|
|
|
# "syntax error, unexpected tREGEXP_BEG, expecting keyword_do or '{' or '('"
|
|
|
|
#
|
|
|
|
# example:
|
|
|
|
# method / f /
|
|
|
|
return false
|
|
|
|
end
|
2019-05-27 12:30:15 -04:00
|
|
|
ensure
|
|
|
|
$VERBOSE = verbose
|
2019-04-27 14:41:06 -04:00
|
|
|
end
|
|
|
|
|
2019-06-12 11:29:45 -04:00
|
|
|
if defined?(Ripper::EXPR_BEG)
|
|
|
|
last_lex_state = @tokens.last[3]
|
|
|
|
if last_lex_state.allbits?(Ripper::EXPR_BEG)
|
|
|
|
return false
|
|
|
|
elsif last_lex_state.allbits?(Ripper::EXPR_DOT)
|
|
|
|
return true
|
|
|
|
elsif last_lex_state.allbits?(Ripper::EXPR_CLASS)
|
|
|
|
return true
|
|
|
|
elsif last_lex_state.allbits?(Ripper::EXPR_FNAME)
|
|
|
|
return true
|
|
|
|
elsif last_lex_state.allbits?(Ripper::EXPR_VALUE)
|
|
|
|
return true
|
|
|
|
elsif last_lex_state.allbits?(Ripper::EXPR_ARG)
|
|
|
|
return false
|
|
|
|
end
|
2019-04-27 14:41:06 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
false
|
2019-04-23 08:55:29 -04:00
|
|
|
end
|
|
|
|
|
2019-06-24 10:58:50 -04:00
|
|
|
def process_nesting_level
|
2019-07-01 14:34:08 -04:00
|
|
|
indent = 0
|
2020-06-25 10:56:03 -04:00
|
|
|
in_oneliner_def = nil
|
2019-07-01 14:34:08 -04:00
|
|
|
@tokens.each_with_index { |t, index|
|
2020-06-25 10:56:03 -04:00
|
|
|
# detecting one-liner method definition
|
|
|
|
if in_oneliner_def.nil?
|
|
|
|
if t[3].allbits?(Ripper::EXPR_ENDFN)
|
|
|
|
in_oneliner_def = :ENDFN
|
|
|
|
end
|
|
|
|
else
|
|
|
|
if t[3].allbits?(Ripper::EXPR_ENDFN)
|
|
|
|
# continuing
|
|
|
|
elsif t[3].allbits?(Ripper::EXPR_BEG)
|
|
|
|
if t[2] == '='
|
|
|
|
in_oneliner_def = :BODY
|
|
|
|
end
|
2020-09-21 20:06:43 -04:00
|
|
|
else
|
2020-06-25 10:56:03 -04:00
|
|
|
if in_oneliner_def == :BODY
|
|
|
|
# one-liner method definition
|
|
|
|
indent -= 1
|
|
|
|
end
|
|
|
|
in_oneliner_def = nil
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2019-06-24 10:58:50 -04:00
|
|
|
case t[1]
|
2020-08-16 21:41:31 -04:00
|
|
|
when :on_lbracket, :on_lbrace, :on_lparen, :on_tlambeg
|
2019-06-24 10:58:50 -04:00
|
|
|
indent += 1
|
|
|
|
when :on_rbracket, :on_rbrace, :on_rparen
|
|
|
|
indent -= 1
|
|
|
|
when :on_kw
|
2019-07-01 14:34:08 -04:00
|
|
|
next if index > 0 and @tokens[index - 1][3].allbits?(Ripper::EXPR_FNAME)
|
2019-06-24 10:58:50 -04:00
|
|
|
case t[2]
|
2019-08-19 19:24:50 -04:00
|
|
|
when 'do'
|
2019-12-14 02:14:43 -05:00
|
|
|
if index > 0 and @tokens[index - 1][3].anybits?(Ripper::EXPR_CMDARG | Ripper::EXPR_ENDFN | Ripper::EXPR_ARG)
|
2019-11-19 19:58:33 -05:00
|
|
|
# method_with_block do; end
|
2019-08-19 19:24:50 -04:00
|
|
|
indent += 1
|
|
|
|
else
|
|
|
|
# while cond do; end # also "until" or "for"
|
|
|
|
# This "do" doesn't increment indent because "while" already
|
|
|
|
# incremented.
|
|
|
|
end
|
|
|
|
when 'def', 'case', 'for', 'begin', 'class', 'module'
|
2019-06-24 10:58:50 -04:00
|
|
|
indent += 1
|
|
|
|
when 'if', 'unless', 'while', 'until'
|
2020-03-02 08:16:11 -05:00
|
|
|
# postfix if/unless/while/until must be Ripper::EXPR_LABEL
|
2019-06-24 10:58:50 -04:00
|
|
|
indent += 1 unless t[3].allbits?(Ripper::EXPR_LABEL)
|
|
|
|
when 'end'
|
|
|
|
indent -= 1
|
|
|
|
end
|
|
|
|
end
|
|
|
|
# percent literals are not indented
|
|
|
|
}
|
|
|
|
indent
|
|
|
|
end
|
|
|
|
|
2019-06-25 09:07:32 -04:00
|
|
|
def check_newline_depth_difference
|
|
|
|
depth_difference = 0
|
2019-12-30 11:18:05 -05:00
|
|
|
open_brace_on_line = 0
|
2020-06-25 10:56:03 -04:00
|
|
|
in_oneliner_def = nil
|
2019-06-25 09:07:32 -04:00
|
|
|
@tokens.each_with_index do |t, index|
|
2020-06-25 10:56:03 -04:00
|
|
|
# detecting one-liner method definition
|
|
|
|
if in_oneliner_def.nil?
|
|
|
|
if t[3].allbits?(Ripper::EXPR_ENDFN)
|
|
|
|
in_oneliner_def = :ENDFN
|
|
|
|
end
|
|
|
|
else
|
|
|
|
if t[3].allbits?(Ripper::EXPR_ENDFN)
|
|
|
|
# continuing
|
|
|
|
elsif t[3].allbits?(Ripper::EXPR_BEG)
|
|
|
|
if t[2] == '='
|
|
|
|
in_oneliner_def = :BODY
|
|
|
|
end
|
2020-09-21 20:06:43 -04:00
|
|
|
else
|
2020-06-25 10:56:03 -04:00
|
|
|
if in_oneliner_def == :BODY
|
2020-11-22 08:03:09 -05:00
|
|
|
# one-liner method definition
|
2020-06-25 10:56:03 -04:00
|
|
|
depth_difference -= 1
|
|
|
|
end
|
|
|
|
in_oneliner_def = nil
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2019-06-25 09:07:32 -04:00
|
|
|
case t[1]
|
2019-11-19 18:39:43 -05:00
|
|
|
when :on_ignored_nl, :on_nl, :on_comment
|
2019-06-25 09:07:32 -04:00
|
|
|
if index != (@tokens.size - 1)
|
|
|
|
depth_difference = 0
|
2019-12-30 11:18:05 -05:00
|
|
|
open_brace_on_line = 0
|
2019-06-25 09:07:32 -04:00
|
|
|
end
|
|
|
|
next
|
|
|
|
when :on_sp
|
|
|
|
next
|
|
|
|
end
|
|
|
|
case t[1]
|
2020-08-16 09:25:31 -04:00
|
|
|
when :on_lbracket, :on_lbrace, :on_lparen, :on_tlambeg
|
2019-06-25 09:07:32 -04:00
|
|
|
depth_difference += 1
|
2019-12-30 11:18:05 -05:00
|
|
|
open_brace_on_line += 1
|
2019-06-25 09:07:32 -04:00
|
|
|
when :on_rbracket, :on_rbrace, :on_rparen
|
2019-12-30 11:18:05 -05:00
|
|
|
depth_difference -= 1 if open_brace_on_line > 0
|
2019-06-25 09:07:32 -04:00
|
|
|
when :on_kw
|
2019-07-01 14:34:08 -04:00
|
|
|
next if index > 0 and @tokens[index - 1][3].allbits?(Ripper::EXPR_FNAME)
|
2019-06-25 09:07:32 -04:00
|
|
|
case t[2]
|
2019-08-19 19:24:50 -04:00
|
|
|
when 'do'
|
2019-12-14 02:07:21 -05:00
|
|
|
if index > 0 and @tokens[index - 1][3].anybits?(Ripper::EXPR_CMDARG | Ripper::EXPR_ENDFN | Ripper::EXPR_ARG)
|
2019-11-19 19:58:33 -05:00
|
|
|
# method_with_block do; end
|
2019-08-19 19:24:50 -04:00
|
|
|
depth_difference += 1
|
|
|
|
else
|
|
|
|
# while cond do; end # also "until" or "for"
|
|
|
|
# This "do" doesn't increment indent because "while" already
|
|
|
|
# incremented.
|
|
|
|
end
|
|
|
|
when 'def', 'case', 'for', 'begin', 'class', 'module'
|
2019-06-25 09:07:32 -04:00
|
|
|
depth_difference += 1
|
2020-03-02 08:16:11 -05:00
|
|
|
when 'if', 'unless', 'while', 'until', 'rescue'
|
2019-06-25 09:07:32 -04:00
|
|
|
# postfix if/unless/while/until/rescue must be Ripper::EXPR_LABEL
|
|
|
|
unless t[3].allbits?(Ripper::EXPR_LABEL)
|
|
|
|
depth_difference += 1
|
|
|
|
end
|
2020-03-02 08:16:11 -05:00
|
|
|
when 'else', 'elsif', 'ensure', 'when', 'in'
|
2019-06-25 09:07:32 -04:00
|
|
|
depth_difference += 1
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
depth_difference
|
|
|
|
end
|
|
|
|
|
2019-06-24 10:58:50 -04:00
|
|
|
def check_corresponding_token_depth
|
2019-06-21 08:31:56 -04:00
|
|
|
corresponding_token_depth = nil
|
|
|
|
is_first_spaces_of_line = true
|
2019-06-21 08:57:19 -04:00
|
|
|
is_first_printable_of_line = true
|
2019-06-21 08:31:56 -04:00
|
|
|
spaces_of_nest = []
|
|
|
|
spaces_at_line_head = 0
|
2020-01-05 14:44:38 -05:00
|
|
|
open_brace_on_line = 0
|
2020-06-25 10:56:03 -04:00
|
|
|
in_oneliner_def = nil
|
2019-07-01 14:34:08 -04:00
|
|
|
@tokens.each_with_index do |t, index|
|
2020-06-25 10:56:03 -04:00
|
|
|
# detecting one-liner method definition
|
|
|
|
if in_oneliner_def.nil?
|
|
|
|
if t[3].allbits?(Ripper::EXPR_ENDFN)
|
|
|
|
in_oneliner_def = :ENDFN
|
|
|
|
end
|
|
|
|
else
|
|
|
|
if t[3].allbits?(Ripper::EXPR_ENDFN)
|
|
|
|
# continuing
|
|
|
|
elsif t[3].allbits?(Ripper::EXPR_BEG)
|
|
|
|
if t[2] == '='
|
|
|
|
in_oneliner_def = :BODY
|
|
|
|
end
|
2020-09-21 20:06:43 -04:00
|
|
|
else
|
2020-06-25 10:56:03 -04:00
|
|
|
if in_oneliner_def == :BODY
|
|
|
|
# one-liner method definition
|
|
|
|
if is_first_printable_of_line
|
|
|
|
corresponding_token_depth = spaces_of_nest.pop
|
|
|
|
else
|
|
|
|
spaces_of_nest.pop
|
|
|
|
corresponding_token_depth = nil
|
|
|
|
end
|
|
|
|
end
|
|
|
|
in_oneliner_def = nil
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2019-06-21 08:31:56 -04:00
|
|
|
case t[1]
|
2019-11-19 18:39:43 -05:00
|
|
|
when :on_ignored_nl, :on_nl, :on_comment
|
2019-12-02 23:02:01 -05:00
|
|
|
corresponding_token_depth = nil
|
2019-06-21 11:31:30 -04:00
|
|
|
spaces_at_line_head = 0
|
2019-06-21 08:31:56 -04:00
|
|
|
is_first_spaces_of_line = true
|
2019-06-21 08:57:19 -04:00
|
|
|
is_first_printable_of_line = true
|
2020-01-05 14:44:38 -05:00
|
|
|
open_brace_on_line = 0
|
2019-06-24 10:58:50 -04:00
|
|
|
next
|
2019-06-21 08:31:56 -04:00
|
|
|
when :on_sp
|
|
|
|
spaces_at_line_head = t[2].count(' ') if is_first_spaces_of_line
|
|
|
|
is_first_spaces_of_line = false
|
2019-06-24 10:58:50 -04:00
|
|
|
next
|
2019-06-21 08:31:56 -04:00
|
|
|
end
|
2019-04-27 14:41:06 -04:00
|
|
|
case t[1]
|
2020-08-16 09:25:31 -04:00
|
|
|
when :on_lbracket, :on_lbrace, :on_lparen, :on_tlambeg
|
2020-01-05 14:44:38 -05:00
|
|
|
spaces_of_nest.push(spaces_at_line_head + open_brace_on_line * 2)
|
|
|
|
open_brace_on_line += 1
|
2019-04-27 14:41:06 -04:00
|
|
|
when :on_rbracket, :on_rbrace, :on_rparen
|
2019-06-21 08:57:19 -04:00
|
|
|
if is_first_printable_of_line
|
|
|
|
corresponding_token_depth = spaces_of_nest.pop
|
|
|
|
else
|
2019-06-26 05:41:42 -04:00
|
|
|
spaces_of_nest.pop
|
2019-06-21 08:57:19 -04:00
|
|
|
corresponding_token_depth = nil
|
|
|
|
end
|
2020-02-10 12:11:35 -05:00
|
|
|
open_brace_on_line -= 1
|
2019-04-27 14:41:06 -04:00
|
|
|
when :on_kw
|
2019-07-01 14:34:08 -04:00
|
|
|
next if index > 0 and @tokens[index - 1][3].allbits?(Ripper::EXPR_FNAME)
|
2019-04-27 14:41:06 -04:00
|
|
|
case t[2]
|
|
|
|
when 'def', 'do', 'case', 'for', 'begin', 'class', 'module'
|
2019-06-21 08:31:56 -04:00
|
|
|
spaces_of_nest.push(spaces_at_line_head)
|
2020-03-02 08:16:11 -05:00
|
|
|
when 'rescue'
|
|
|
|
unless t[3].allbits?(Ripper::EXPR_LABEL)
|
|
|
|
corresponding_token_depth = spaces_of_nest.last
|
|
|
|
end
|
2019-06-11 22:00:25 -04:00
|
|
|
when 'if', 'unless', 'while', 'until'
|
2020-03-02 08:16:11 -05:00
|
|
|
# postfix if/unless/while/until must be Ripper::EXPR_LABEL
|
2019-06-24 10:58:50 -04:00
|
|
|
unless t[3].allbits?(Ripper::EXPR_LABEL)
|
|
|
|
spaces_of_nest.push(spaces_at_line_head)
|
|
|
|
end
|
2020-03-02 08:16:11 -05:00
|
|
|
when 'else', 'elsif', 'ensure', 'when', 'in'
|
2019-06-25 09:00:29 -04:00
|
|
|
corresponding_token_depth = spaces_of_nest.last
|
2019-04-27 14:41:06 -04:00
|
|
|
when 'end'
|
2019-06-21 08:57:19 -04:00
|
|
|
if is_first_printable_of_line
|
|
|
|
corresponding_token_depth = spaces_of_nest.pop
|
|
|
|
else
|
2019-06-26 05:41:42 -04:00
|
|
|
spaces_of_nest.pop
|
2019-06-21 08:57:19 -04:00
|
|
|
corresponding_token_depth = nil
|
|
|
|
end
|
2019-04-23 08:55:29 -04:00
|
|
|
end
|
|
|
|
end
|
2019-06-21 08:57:19 -04:00
|
|
|
is_first_spaces_of_line = false
|
|
|
|
is_first_printable_of_line = false
|
2019-06-18 07:57:58 -04:00
|
|
|
end
|
2019-06-24 10:58:50 -04:00
|
|
|
corresponding_token_depth
|
2000-05-12 05:07:57 -04:00
|
|
|
end
|
2009-03-05 22:56:38 -05:00
|
|
|
|
2019-04-27 14:41:06 -04:00
|
|
|
def check_string_literal
|
|
|
|
i = 0
|
|
|
|
start_token = []
|
|
|
|
end_type = []
|
|
|
|
while i < @tokens.size
|
|
|
|
t = @tokens[i]
|
|
|
|
case t[1]
|
|
|
|
when :on_tstring_beg
|
|
|
|
start_token << t
|
JSON like label ends by differs from the start
pp Ripper.lex('{ "a": 3 }')
=>
[[[1, 0], :on_lbrace, "{", EXPR_BEG|EXPR_LABEL],
[[1, 1], :on_sp, " ", EXPR_BEG|EXPR_LABEL],
[[1, 2], :on_tstring_beg, "\"", EXPR_BEG|EXPR_LABEL],
[[1, 3], :on_tstring_content, "a", EXPR_BEG|EXPR_LABEL],
[[1, 4], :on_label_end, "\":", EXPR_BEG|EXPR_LABEL],
[[1, 6], :on_sp, " ", EXPR_BEG|EXPR_LABEL],
[[1, 7], :on_int, "3", EXPR_END],
[[1, 8], :on_sp, " ", EXPR_END],
[[1, 9], :on_rbrace, "}", EXPR_END]]
2019-05-24 21:36:30 -04:00
|
|
|
end_type << [:on_tstring_end, :on_label_end]
|
2019-04-27 14:41:06 -04:00
|
|
|
when :on_regexp_beg
|
|
|
|
start_token << t
|
|
|
|
end_type << :on_regexp_end
|
|
|
|
when :on_symbeg
|
2019-05-26 13:59:21 -04:00
|
|
|
acceptable_single_tokens = %i{on_ident on_const on_op on_cvar on_ivar on_gvar on_kw}
|
|
|
|
if (i + 1) < @tokens.size and acceptable_single_tokens.all?{ |t| @tokens[i + 1][1] != t }
|
2019-04-27 14:41:06 -04:00
|
|
|
start_token << t
|
|
|
|
end_type << :on_tstring_end
|
2014-08-08 21:36:49 -04:00
|
|
|
end
|
2019-04-27 14:41:06 -04:00
|
|
|
when :on_backtick
|
|
|
|
start_token << t
|
|
|
|
end_type << :on_tstring_end
|
|
|
|
when :on_qwords_beg, :on_words_beg, :on_qsymbols_beg, :on_symbols_beg
|
|
|
|
start_token << t
|
|
|
|
end_type << :on_tstring_end
|
|
|
|
when :on_heredoc_beg
|
|
|
|
start_token << t
|
|
|
|
end_type << :on_heredoc_end
|
JSON like label ends by differs from the start
pp Ripper.lex('{ "a": 3 }')
=>
[[[1, 0], :on_lbrace, "{", EXPR_BEG|EXPR_LABEL],
[[1, 1], :on_sp, " ", EXPR_BEG|EXPR_LABEL],
[[1, 2], :on_tstring_beg, "\"", EXPR_BEG|EXPR_LABEL],
[[1, 3], :on_tstring_content, "a", EXPR_BEG|EXPR_LABEL],
[[1, 4], :on_label_end, "\":", EXPR_BEG|EXPR_LABEL],
[[1, 6], :on_sp, " ", EXPR_BEG|EXPR_LABEL],
[[1, 7], :on_int, "3", EXPR_END],
[[1, 8], :on_sp, " ", EXPR_END],
[[1, 9], :on_rbrace, "}", EXPR_END]]
2019-05-24 21:36:30 -04:00
|
|
|
when *end_type.last
|
2019-04-27 14:41:06 -04:00
|
|
|
start_token.pop
|
|
|
|
end_type.pop
|
|
|
|
end
|
|
|
|
i += 1
|
|
|
|
end
|
|
|
|
start_token.last.nil? ? '' : start_token.last
|
2009-07-23 04:35:22 -04:00
|
|
|
end
|
2011-05-15 07:55:52 -04:00
|
|
|
|
2019-04-27 14:41:06 -04:00
|
|
|
def process_literal_type
|
|
|
|
start_token = check_string_literal
|
|
|
|
case start_token[1]
|
|
|
|
when :on_tstring_beg
|
|
|
|
case start_token[2]
|
|
|
|
when ?" then ?"
|
|
|
|
when /^%.$/ then ?"
|
|
|
|
when /^%Q.$/ then ?"
|
|
|
|
when ?' then ?'
|
|
|
|
when /^%q.$/ then ?'
|
|
|
|
end
|
|
|
|
when :on_regexp_beg then ?/
|
|
|
|
when :on_symbeg then ?:
|
|
|
|
when :on_backtick then ?`
|
|
|
|
when :on_qwords_beg then ?]
|
|
|
|
when :on_words_beg then ?]
|
|
|
|
when :on_qsymbols_beg then ?]
|
|
|
|
when :on_symbols_beg then ?]
|
|
|
|
when :on_heredoc_beg
|
|
|
|
start_token[2] =~ /<<[-~]?(['"`])[_a-zA-Z0-9]+\1/
|
|
|
|
case $1
|
|
|
|
when ?" then ?"
|
|
|
|
when ?' then ?'
|
|
|
|
when ?` then ?`
|
|
|
|
else ?"
|
2000-05-12 05:07:57 -04:00
|
|
|
end
|
|
|
|
else
|
2019-04-27 14:41:06 -04:00
|
|
|
nil
|
2000-05-12 05:07:57 -04:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
2012-12-13 00:22:30 -05:00
|
|
|
# :startdoc:
|