[ruby/prism] Use Sexp#line_max not Sexp#max_line

for RubyParser translation

a37169621a
This commit is contained in:
Justin Collins 2024-03-23 15:20:52 -07:00 committed by git
parent daf1d7bfef
commit f5a2f55aca
2 changed files with 6 additions and 6 deletions

View file

@ -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
)