[ruby/reline] Use ripper_lex_without_warning

https://github.com/ruby/reline/commit/b7536dc224
This commit is contained in:
aycabta 2021-12-27 23:14:03 +09:00 коммит произвёл git
Родитель f589242e75
Коммит 9295732af8
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -4,7 +4,7 @@ require 'irb/ruby-lex'
class TerminationChecker < RubyLex
def terminated?(code)
code.gsub!(/\n*$/, '').concat("\n")
@tokens = Ripper.lex(code)
@tokens = self.class.ripper_lex_without_warning(code)
continue = process_continue
code_block_open = check_code_block(code)
indent = process_nesting_level