ext/ripper/lib/ripper/lexer.rb: Consistently use `Array#push`

instead of <<.  All the other callsites use `push`.
This commit is contained in:
Yusuke Endoh 2019-08-07 03:13:17 +09:00
Родитель ef8c5161b4
Коммит 8877dbe400
1 изменённых файлов: 1 добавлений и 1 удалений

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

@ -161,7 +161,7 @@ class Ripper
def on_heredoc_beg(tok)
@stack.push @buf
buf = []
@buf << buf
@buf.push buf
@buf = buf
@buf.push Elem.new([lineno(), column()], __callee__, tok, state())
end