mirror of
https://github.com/ruby/ruby.git
synced 2025-09-15 16:44:01 +02:00
[ruby/prism] Use Sexp#line_max not Sexp#max_line
for RubyParser translation
a37169621a
This commit is contained in:
parent
daf1d7bfef
commit
f5a2f55aca
2 changed files with 6 additions and 6 deletions
|
@ -18,7 +18,7 @@ end
|
|||
Sexp.prepend(
|
||||
Module.new do
|
||||
def ==(other)
|
||||
super && line == other.line && max_line == other.max_line && file == other.file
|
||||
super && line == other.line && line_max == other.line_max && file == other.file
|
||||
end
|
||||
end
|
||||
)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue