Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

+ Optimize Range#column_range #741

Merged
merged 1 commit into from Sep 15, 2020
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
4 changes: 2 additions & 2 deletions lib/parser/source/range.rb
Expand Up @@ -112,11 +112,11 @@ def last_column
# @raise RangeError
#
def column_range
if self.begin.line != self.end.line
if line != last_line
raise RangeError, "#{self.inspect} spans more than one line"
end

self.begin.column...self.end.column
column...last_column
end

##
Expand Down