Class: Parser::Source::Range
- Inherits:
-
Object
- Object
- Parser::Source::Range
- Includes:
- Comparable
- Defined in:
- lib/parser/source/range.rb
Overview
A range of characters in a particular source buffer.
The range is always exclusive, i.e. a range with ‘begin_pos` of 3 and `end_pos` of 5 will contain the following characters:
example
^^
Instance Attribute Summary collapse
-
#begin_pos ⇒ Integer
readonly
Index of the first character in the range.
-
#end_pos ⇒ Integer
readonly
Index of the character after the last character in the range.
- #source_buffer ⇒ Parser::Source::Buffer readonly
Instance Method Summary collapse
-
#<=>(other) ⇒ Object
Compare ranges, first by begin_pos, then by end_pos.
-
#adjust(begin_pos: 0, end_pos: 0) ⇒ Range
by the given amount(s).
-
#begin ⇒ Range
A zero-length range located just before the beginning of this range.
-
#column ⇒ Integer
Zero-based column number of the beginning of this range.
-
#column_range ⇒ ::Range
A range of columns spanned by this range.
-
#contained?(other) ⇒ Boolean
Return ‘other.contains?(self)`.
-
#contains?(other) ⇒ Boolean
Returns true iff this range contains (strictly) ‘other`.
-
#crossing?(other) ⇒ Boolean
Returns true iff both ranges intersect and also have different elements from one another.
-
#disjoint?(other) ⇒ Boolean
Return ‘true` iff this range and `other` are disjoint.
-
#empty? ⇒ Boolean
Checks if a range is empty; if it contains no characters.
-
#end ⇒ Range
A zero-length range located just after the end of this range.
-
#hash ⇒ Object
Support for Ranges be used in as Hash indices and in Sets.
-
#initialize(source_buffer, begin_pos, end_pos) ⇒ Range
constructor
A new instance of Range.
-
#inspect ⇒ String
A human-readable representation of this range.
-
#intersect(other) ⇒ Range
Overlapping region of this range and ‘other`, or `nil` if they do not overlap.
-
#is?(*what) ⇒ Boolean
‘is?` provides a concise way to compare the source corresponding to this range.
-
#join(other) ⇒ Range
Smallest possible range spanning both this range and ‘other`.
-
#last_column ⇒ Integer
Zero-based column number of the end of this range.
-
#last_line ⇒ Integer
Line number of the end of this range.
-
#line ⇒ Integer
(also: #first_line)
Line number of the beginning of this range.
-
#overlaps?(other) ⇒ Boolean
Return ‘true` iff this range is not disjoint from `other`.
-
#resize(new_size) ⇒ Range
A range beginning at the same point as this range and length ‘new_size`.
-
#size ⇒ Integer
(also: #length)
Amount of characters included in this range.
-
#source ⇒ String
All source code covered by this range.
-
#source_line ⇒ String
A line of source code containing the beginning of this range.
-
#to_a ⇒ Array<Integer>
A set of character indexes contained in this range.
-
#to_range ⇒ Range
A Ruby range with the same ‘begin_pos` and `end_pos`.
-
#to_s ⇒ String
Composes a GNU/Clang-style string representation of the beginning of this range.
-
#with(begin_pos: @begin_pos, end_pos: @end_pos) ⇒ Range
to the given value(s).
Constructor Details
#initialize(source_buffer, begin_pos, end_pos) ⇒ Range
Returns a new instance of Range.
37 38 39 40 41 42 43 44 45 46 47 48 49 |
# File 'lib/parser/source/range.rb', line 37 def initialize(source_buffer, begin_pos, end_pos) if end_pos < begin_pos raise ArgumentError, 'Parser::Source::Range: end_pos must not be less than begin_pos' end if source_buffer.nil? raise ArgumentError, 'Parser::Source::Range: source_buffer must not be nil' end @source_buffer = source_buffer @begin_pos, @end_pos = begin_pos, end_pos freeze end |
Instance Attribute Details
#begin_pos ⇒ Integer (readonly)
Returns index of the first character in the range.
26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 |
# File 'lib/parser/source/range.rb', line 26 class Range include Comparable attr_reader :source_buffer attr_reader :begin_pos, :end_pos ## # @param [Buffer] source_buffer # @param [Integer] begin_pos # @param [Integer] end_pos # def initialize(source_buffer, begin_pos, end_pos) if end_pos < begin_pos raise ArgumentError, 'Parser::Source::Range: end_pos must not be less than begin_pos' end if source_buffer.nil? raise ArgumentError, 'Parser::Source::Range: source_buffer must not be nil' end @source_buffer = source_buffer @begin_pos, @end_pos = begin_pos, end_pos freeze end ## # @return [Range] a zero-length range located just before the beginning # of this range. # def begin with(end_pos: @begin_pos) end ## # @return [Range] a zero-length range located just after the end # of this range. # def end with(begin_pos: @end_pos) end ## # @return [Integer] amount of characters included in this range. # def size @end_pos - @begin_pos end alias length size ## # Line number of the beginning of this range. By default, the first line # of a buffer is 1; as such, line numbers are most commonly one-based. # # @see Buffer # @return [Integer] line number of the beginning of this range. # def line @source_buffer.line_for_position(@begin_pos) end alias_method :first_line, :line ## # @return [Integer] zero-based column number of the beginning of this range. # def column @source_buffer.column_for_position(@begin_pos) end ## # @return [Integer] line number of the end of this range. # def last_line @source_buffer.line_for_position(@end_pos) end ## # @return [Integer] zero-based column number of the end of this range. # def last_column @source_buffer.column_for_position(@end_pos) end ## # @return [::Range] a range of columns spanned by this range. # @raise RangeError # def column_range if line != last_line raise RangeError, "#{self.inspect} spans more than one line" end column...last_column end ## # @return [String] a line of source code containing the beginning of this range. # def source_line @source_buffer.source_line(line) end ## # @return [String] all source code covered by this range. # def source @source_buffer.slice(@begin_pos, @end_pos - @begin_pos) end ## # `is?` provides a concise way to compare the source corresponding to this range. # For example, `r.source == '(' || r.source == 'begin'` is equivalent to # `r.is?('(', 'begin')`. # def is?(*what) what.include?(source) end ## # @return [Array<Integer>] a set of character indexes contained in this range. # def to_a (@begin_pos...@end_pos).to_a end ## # @return [Range] a Ruby range with the same `begin_pos` and `end_pos` # def to_range self.begin_pos...self.end_pos end ## # Composes a GNU/Clang-style string representation of the beginning of this # range. # # For example, for the following range in file `foo.rb`, # # def foo # ^^^ # # `to_s` will return `foo.rb:1:5`. # Note that the column index is one-based. # # @return [String] # def to_s line, column = @source_buffer.decompose_position(@begin_pos) [@source_buffer.name, line, column + 1].join(':') end ## # @param [Hash] Endpoint(s) to change, any combination of :begin_pos or :end_pos # @return [Range] the same range as this range but with the given end point(s) changed # to the given value(s). # def with(begin_pos: @begin_pos, end_pos: @end_pos) Range.new(@source_buffer, begin_pos, end_pos) end ## # @param [Hash] Endpoint(s) to change, any combination of :begin_pos or :end_pos # @return [Range] the same range as this range but with the given end point(s) adjusted # by the given amount(s) # def adjust(begin_pos: 0, end_pos: 0) Range.new(@source_buffer, @begin_pos + begin_pos, @end_pos + end_pos) end ## # @param [Integer] new_size # @return [Range] a range beginning at the same point as this range and length `new_size`. # def resize(new_size) with(end_pos: @begin_pos + new_size) end ## # @param [Range] other # @return [Range] smallest possible range spanning both this range and `other`. # def join(other) Range.new(@source_buffer, [@begin_pos, other.begin_pos].min, [@end_pos, other.end_pos].max) end ## # @param [Range] other # @return [Range] overlapping region of this range and `other`, or `nil` # if they do not overlap # def intersect(other) unless disjoint?(other) Range.new(@source_buffer, [@begin_pos, other.begin_pos].max, [@end_pos, other.end_pos].min) end end ## # Return `true` iff this range and `other` are disjoint. # # Two ranges must be one and only one of ==, disjoint?, contains?, contained? or crossing? # # @param [Range] other # @return [Boolean] # def disjoint?(other) if empty? && other.empty? @begin_pos != other.begin_pos else @begin_pos >= other.end_pos || other.begin_pos >= @end_pos end end ## # Return `true` iff this range is not disjoint from `other`. # # @param [Range] other # @return [Boolean] `true` if this range and `other` overlap # def overlaps?(other) !disjoint?(other) end ## # Returns true iff this range contains (strictly) `other`. # # Two ranges must be one and only one of ==, disjoint?, contains?, contained? or crossing? # # @param [Range] other # @return [Boolean] # def contains?(other) (other.begin_pos <=> @begin_pos) + (@end_pos <=> other.end_pos) >= (other.empty? ? 2 : 1) end ## # Return `other.contains?(self)` # # Two ranges must be one and only one of ==, disjoint?, contains?, contained? or crossing? # # @param [Range] other # @return [Boolean] # def contained?(other) other.contains?(self) end ## # Returns true iff both ranges intersect and also have different elements from one another. # # Two ranges must be one and only one of ==, disjoint?, contains?, contained? or crossing? # # @param [Range] other # @return [Boolean] # def crossing?(other) return false unless overlaps?(other) (@begin_pos <=> other.begin_pos) * (@end_pos <=> other.end_pos) == 1 end ## # Checks if a range is empty; if it contains no characters # @return [Boolean] def empty? @begin_pos == @end_pos end ## # Compare ranges, first by begin_pos, then by end_pos. # def <=>(other) return nil unless other.is_a?(::Parser::Source::Range) && @source_buffer == other.source_buffer (@begin_pos <=> other.begin_pos).nonzero? || (@end_pos <=> other.end_pos) end alias_method :eql?, :== ## # Support for Ranges be used in as Hash indices and in Sets. # def hash [@source_buffer, @begin_pos, @end_pos].hash end ## # @return [String] a human-readable representation of this range. # def inspect "#<Parser::Source::Range #{@source_buffer.name} #{@begin_pos}...#{@end_pos}>" end end |
#end_pos ⇒ Integer (readonly)
Returns index of the character after the last character in the range.
26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 |
# File 'lib/parser/source/range.rb', line 26 class Range include Comparable attr_reader :source_buffer attr_reader :begin_pos, :end_pos ## # @param [Buffer] source_buffer # @param [Integer] begin_pos # @param [Integer] end_pos # def initialize(source_buffer, begin_pos, end_pos) if end_pos < begin_pos raise ArgumentError, 'Parser::Source::Range: end_pos must not be less than begin_pos' end if source_buffer.nil? raise ArgumentError, 'Parser::Source::Range: source_buffer must not be nil' end @source_buffer = source_buffer @begin_pos, @end_pos = begin_pos, end_pos freeze end ## # @return [Range] a zero-length range located just before the beginning # of this range. # def begin with(end_pos: @begin_pos) end ## # @return [Range] a zero-length range located just after the end # of this range. # def end with(begin_pos: @end_pos) end ## # @return [Integer] amount of characters included in this range. # def size @end_pos - @begin_pos end alias length size ## # Line number of the beginning of this range. By default, the first line # of a buffer is 1; as such, line numbers are most commonly one-based. # # @see Buffer # @return [Integer] line number of the beginning of this range. # def line @source_buffer.line_for_position(@begin_pos) end alias_method :first_line, :line ## # @return [Integer] zero-based column number of the beginning of this range. # def column @source_buffer.column_for_position(@begin_pos) end ## # @return [Integer] line number of the end of this range. # def last_line @source_buffer.line_for_position(@end_pos) end ## # @return [Integer] zero-based column number of the end of this range. # def last_column @source_buffer.column_for_position(@end_pos) end ## # @return [::Range] a range of columns spanned by this range. # @raise RangeError # def column_range if line != last_line raise RangeError, "#{self.inspect} spans more than one line" end column...last_column end ## # @return [String] a line of source code containing the beginning of this range. # def source_line @source_buffer.source_line(line) end ## # @return [String] all source code covered by this range. # def source @source_buffer.slice(@begin_pos, @end_pos - @begin_pos) end ## # `is?` provides a concise way to compare the source corresponding to this range. # For example, `r.source == '(' || r.source == 'begin'` is equivalent to # `r.is?('(', 'begin')`. # def is?(*what) what.include?(source) end ## # @return [Array<Integer>] a set of character indexes contained in this range. # def to_a (@begin_pos...@end_pos).to_a end ## # @return [Range] a Ruby range with the same `begin_pos` and `end_pos` # def to_range self.begin_pos...self.end_pos end ## # Composes a GNU/Clang-style string representation of the beginning of this # range. # # For example, for the following range in file `foo.rb`, # # def foo # ^^^ # # `to_s` will return `foo.rb:1:5`. # Note that the column index is one-based. # # @return [String] # def to_s line, column = @source_buffer.decompose_position(@begin_pos) [@source_buffer.name, line, column + 1].join(':') end ## # @param [Hash] Endpoint(s) to change, any combination of :begin_pos or :end_pos # @return [Range] the same range as this range but with the given end point(s) changed # to the given value(s). # def with(begin_pos: @begin_pos, end_pos: @end_pos) Range.new(@source_buffer, begin_pos, end_pos) end ## # @param [Hash] Endpoint(s) to change, any combination of :begin_pos or :end_pos # @return [Range] the same range as this range but with the given end point(s) adjusted # by the given amount(s) # def adjust(begin_pos: 0, end_pos: 0) Range.new(@source_buffer, @begin_pos + begin_pos, @end_pos + end_pos) end ## # @param [Integer] new_size # @return [Range] a range beginning at the same point as this range and length `new_size`. # def resize(new_size) with(end_pos: @begin_pos + new_size) end ## # @param [Range] other # @return [Range] smallest possible range spanning both this range and `other`. # def join(other) Range.new(@source_buffer, [@begin_pos, other.begin_pos].min, [@end_pos, other.end_pos].max) end ## # @param [Range] other # @return [Range] overlapping region of this range and `other`, or `nil` # if they do not overlap # def intersect(other) unless disjoint?(other) Range.new(@source_buffer, [@begin_pos, other.begin_pos].max, [@end_pos, other.end_pos].min) end end ## # Return `true` iff this range and `other` are disjoint. # # Two ranges must be one and only one of ==, disjoint?, contains?, contained? or crossing? # # @param [Range] other # @return [Boolean] # def disjoint?(other) if empty? && other.empty? @begin_pos != other.begin_pos else @begin_pos >= other.end_pos || other.begin_pos >= @end_pos end end ## # Return `true` iff this range is not disjoint from `other`. # # @param [Range] other # @return [Boolean] `true` if this range and `other` overlap # def overlaps?(other) !disjoint?(other) end ## # Returns true iff this range contains (strictly) `other`. # # Two ranges must be one and only one of ==, disjoint?, contains?, contained? or crossing? # # @param [Range] other # @return [Boolean] # def contains?(other) (other.begin_pos <=> @begin_pos) + (@end_pos <=> other.end_pos) >= (other.empty? ? 2 : 1) end ## # Return `other.contains?(self)` # # Two ranges must be one and only one of ==, disjoint?, contains?, contained? or crossing? # # @param [Range] other # @return [Boolean] # def contained?(other) other.contains?(self) end ## # Returns true iff both ranges intersect and also have different elements from one another. # # Two ranges must be one and only one of ==, disjoint?, contains?, contained? or crossing? # # @param [Range] other # @return [Boolean] # def crossing?(other) return false unless overlaps?(other) (@begin_pos <=> other.begin_pos) * (@end_pos <=> other.end_pos) == 1 end ## # Checks if a range is empty; if it contains no characters # @return [Boolean] def empty? @begin_pos == @end_pos end ## # Compare ranges, first by begin_pos, then by end_pos. # def <=>(other) return nil unless other.is_a?(::Parser::Source::Range) && @source_buffer == other.source_buffer (@begin_pos <=> other.begin_pos).nonzero? || (@end_pos <=> other.end_pos) end alias_method :eql?, :== ## # Support for Ranges be used in as Hash indices and in Sets. # def hash [@source_buffer, @begin_pos, @end_pos].hash end ## # @return [String] a human-readable representation of this range. # def inspect "#<Parser::Source::Range #{@source_buffer.name} #{@begin_pos}...#{@end_pos}>" end end |
#source_buffer ⇒ Parser::Source::Buffer (readonly)
26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 |
# File 'lib/parser/source/range.rb', line 26 class Range include Comparable attr_reader :source_buffer attr_reader :begin_pos, :end_pos ## # @param [Buffer] source_buffer # @param [Integer] begin_pos # @param [Integer] end_pos # def initialize(source_buffer, begin_pos, end_pos) if end_pos < begin_pos raise ArgumentError, 'Parser::Source::Range: end_pos must not be less than begin_pos' end if source_buffer.nil? raise ArgumentError, 'Parser::Source::Range: source_buffer must not be nil' end @source_buffer = source_buffer @begin_pos, @end_pos = begin_pos, end_pos freeze end ## # @return [Range] a zero-length range located just before the beginning # of this range. # def begin with(end_pos: @begin_pos) end ## # @return [Range] a zero-length range located just after the end # of this range. # def end with(begin_pos: @end_pos) end ## # @return [Integer] amount of characters included in this range. # def size @end_pos - @begin_pos end alias length size ## # Line number of the beginning of this range. By default, the first line # of a buffer is 1; as such, line numbers are most commonly one-based. # # @see Buffer # @return [Integer] line number of the beginning of this range. # def line @source_buffer.line_for_position(@begin_pos) end alias_method :first_line, :line ## # @return [Integer] zero-based column number of the beginning of this range. # def column @source_buffer.column_for_position(@begin_pos) end ## # @return [Integer] line number of the end of this range. # def last_line @source_buffer.line_for_position(@end_pos) end ## # @return [Integer] zero-based column number of the end of this range. # def last_column @source_buffer.column_for_position(@end_pos) end ## # @return [::Range] a range of columns spanned by this range. # @raise RangeError # def column_range if line != last_line raise RangeError, "#{self.inspect} spans more than one line" end column...last_column end ## # @return [String] a line of source code containing the beginning of this range. # def source_line @source_buffer.source_line(line) end ## # @return [String] all source code covered by this range. # def source @source_buffer.slice(@begin_pos, @end_pos - @begin_pos) end ## # `is?` provides a concise way to compare the source corresponding to this range. # For example, `r.source == '(' || r.source == 'begin'` is equivalent to # `r.is?('(', 'begin')`. # def is?(*what) what.include?(source) end ## # @return [Array<Integer>] a set of character indexes contained in this range. # def to_a (@begin_pos...@end_pos).to_a end ## # @return [Range] a Ruby range with the same `begin_pos` and `end_pos` # def to_range self.begin_pos...self.end_pos end ## # Composes a GNU/Clang-style string representation of the beginning of this # range. # # For example, for the following range in file `foo.rb`, # # def foo # ^^^ # # `to_s` will return `foo.rb:1:5`. # Note that the column index is one-based. # # @return [String] # def to_s line, column = @source_buffer.decompose_position(@begin_pos) [@source_buffer.name, line, column + 1].join(':') end ## # @param [Hash] Endpoint(s) to change, any combination of :begin_pos or :end_pos # @return [Range] the same range as this range but with the given end point(s) changed # to the given value(s). # def with(begin_pos: @begin_pos, end_pos: @end_pos) Range.new(@source_buffer, begin_pos, end_pos) end ## # @param [Hash] Endpoint(s) to change, any combination of :begin_pos or :end_pos # @return [Range] the same range as this range but with the given end point(s) adjusted # by the given amount(s) # def adjust(begin_pos: 0, end_pos: 0) Range.new(@source_buffer, @begin_pos + begin_pos, @end_pos + end_pos) end ## # @param [Integer] new_size # @return [Range] a range beginning at the same point as this range and length `new_size`. # def resize(new_size) with(end_pos: @begin_pos + new_size) end ## # @param [Range] other # @return [Range] smallest possible range spanning both this range and `other`. # def join(other) Range.new(@source_buffer, [@begin_pos, other.begin_pos].min, [@end_pos, other.end_pos].max) end ## # @param [Range] other # @return [Range] overlapping region of this range and `other`, or `nil` # if they do not overlap # def intersect(other) unless disjoint?(other) Range.new(@source_buffer, [@begin_pos, other.begin_pos].max, [@end_pos, other.end_pos].min) end end ## # Return `true` iff this range and `other` are disjoint. # # Two ranges must be one and only one of ==, disjoint?, contains?, contained? or crossing? # # @param [Range] other # @return [Boolean] # def disjoint?(other) if empty? && other.empty? @begin_pos != other.begin_pos else @begin_pos >= other.end_pos || other.begin_pos >= @end_pos end end ## # Return `true` iff this range is not disjoint from `other`. # # @param [Range] other # @return [Boolean] `true` if this range and `other` overlap # def overlaps?(other) !disjoint?(other) end ## # Returns true iff this range contains (strictly) `other`. # # Two ranges must be one and only one of ==, disjoint?, contains?, contained? or crossing? # # @param [Range] other # @return [Boolean] # def contains?(other) (other.begin_pos <=> @begin_pos) + (@end_pos <=> other.end_pos) >= (other.empty? ? 2 : 1) end ## # Return `other.contains?(self)` # # Two ranges must be one and only one of ==, disjoint?, contains?, contained? or crossing? # # @param [Range] other # @return [Boolean] # def contained?(other) other.contains?(self) end ## # Returns true iff both ranges intersect and also have different elements from one another. # # Two ranges must be one and only one of ==, disjoint?, contains?, contained? or crossing? # # @param [Range] other # @return [Boolean] # def crossing?(other) return false unless overlaps?(other) (@begin_pos <=> other.begin_pos) * (@end_pos <=> other.end_pos) == 1 end ## # Checks if a range is empty; if it contains no characters # @return [Boolean] def empty? @begin_pos == @end_pos end ## # Compare ranges, first by begin_pos, then by end_pos. # def <=>(other) return nil unless other.is_a?(::Parser::Source::Range) && @source_buffer == other.source_buffer (@begin_pos <=> other.begin_pos).nonzero? || (@end_pos <=> other.end_pos) end alias_method :eql?, :== ## # Support for Ranges be used in as Hash indices and in Sets. # def hash [@source_buffer, @begin_pos, @end_pos].hash end ## # @return [String] a human-readable representation of this range. # def inspect "#<Parser::Source::Range #{@source_buffer.name} #{@begin_pos}...#{@end_pos}>" end end |
Instance Method Details
#<=>(other) ⇒ Object
Compare ranges, first by begin_pos, then by end_pos.
301 302 303 304 305 306 |
# File 'lib/parser/source/range.rb', line 301 def <=>(other) return nil unless other.is_a?(::Parser::Source::Range) && @source_buffer == other.source_buffer (@begin_pos <=> other.begin_pos).nonzero? || (@end_pos <=> other.end_pos) end |
#adjust(begin_pos: 0, end_pos: 0) ⇒ Range
by the given amount(s)
193 194 195 |
# File 'lib/parser/source/range.rb', line 193 def adjust(begin_pos: 0, end_pos: 0) Range.new(@source_buffer, @begin_pos + begin_pos, @end_pos + end_pos) end |
#begin ⇒ Range
Returns a zero-length range located just before the beginning of this range.
55 56 57 |
# File 'lib/parser/source/range.rb', line 55 def begin with(end_pos: @begin_pos) end |
#column ⇒ Integer
Returns zero-based column number of the beginning of this range.
92 93 94 |
# File 'lib/parser/source/range.rb', line 92 def column @source_buffer.column_for_position(@begin_pos) end |
#column_range ⇒ ::Range
Returns a range of columns spanned by this range.
114 115 116 117 118 119 120 |
# File 'lib/parser/source/range.rb', line 114 def column_range if line != last_line raise RangeError, "#{self.inspect} spans more than one line" end column...last_column end |
#contained?(other) ⇒ Boolean
Return ‘other.contains?(self)`
Two ranges must be one and only one of ==, disjoint?, contains?, contained? or crossing?
274 275 276 |
# File 'lib/parser/source/range.rb', line 274 def contained?(other) other.contains?(self) end |
#contains?(other) ⇒ Boolean
Returns true iff this range contains (strictly) ‘other`.
Two ranges must be one and only one of ==, disjoint?, contains?, contained? or crossing?
262 263 264 |
# File 'lib/parser/source/range.rb', line 262 def contains?(other) (other.begin_pos <=> @begin_pos) + (@end_pos <=> other.end_pos) >= (other.empty? ? 2 : 1) end |
#crossing?(other) ⇒ Boolean
Returns true iff both ranges intersect and also have different elements from one another.
Two ranges must be one and only one of ==, disjoint?, contains?, contained? or crossing?
286 287 288 289 |
# File 'lib/parser/source/range.rb', line 286 def crossing?(other) return false unless overlaps?(other) (@begin_pos <=> other.begin_pos) * (@end_pos <=> other.end_pos) == 1 end |
#disjoint?(other) ⇒ Boolean
Return ‘true` iff this range and `other` are disjoint.
Two ranges must be one and only one of ==, disjoint?, contains?, contained? or crossing?
236 237 238 239 240 241 242 |
# File 'lib/parser/source/range.rb', line 236 def disjoint?(other) if empty? && other.empty? @begin_pos != other.begin_pos else @begin_pos >= other.end_pos || other.begin_pos >= @end_pos end end |
#empty? ⇒ Boolean
Checks if a range is empty; if it contains no characters
294 295 296 |
# File 'lib/parser/source/range.rb', line 294 def empty? @begin_pos == @end_pos end |
#end ⇒ Range
Returns a zero-length range located just after the end of this range.
63 64 65 |
# File 'lib/parser/source/range.rb', line 63 def end with(begin_pos: @end_pos) end |
#hash ⇒ Object
Support for Ranges be used in as Hash indices and in Sets.
313 314 315 |
# File 'lib/parser/source/range.rb', line 313 def hash [@source_buffer, @begin_pos, @end_pos].hash end |
#inspect ⇒ String
Returns a human-readable representation of this range.
320 321 322 |
# File 'lib/parser/source/range.rb', line 320 def inspect "#<Parser::Source::Range #{@source_buffer.name} #{@begin_pos}...#{@end_pos}>" end |
#intersect(other) ⇒ Range
Returns overlapping region of this range and ‘other`, or `nil` if they do not overlap.
220 221 222 223 224 225 226 |
# File 'lib/parser/source/range.rb', line 220 def intersect(other) unless disjoint?(other) Range.new(@source_buffer, [@begin_pos, other.begin_pos].max, [@end_pos, other.end_pos].min) end end |
#is?(*what) ⇒ Boolean
‘is?` provides a concise way to compare the source corresponding to this range. For example, `r.source == ’(‘ || r.source == ’begin’‘ is equivalent to `r.is?(’(‘, ’begin’)‘.
141 142 143 |
# File 'lib/parser/source/range.rb', line 141 def is?(*what) what.include?(source) end |
#join(other) ⇒ Range
Returns smallest possible range spanning both this range and ‘other`.
209 210 211 212 213 |
# File 'lib/parser/source/range.rb', line 209 def join(other) Range.new(@source_buffer, [@begin_pos, other.begin_pos].min, [@end_pos, other.end_pos].max) end |
#last_column ⇒ Integer
Returns zero-based column number of the end of this range.
106 107 108 |
# File 'lib/parser/source/range.rb', line 106 def last_column @source_buffer.column_for_position(@end_pos) end |
#last_line ⇒ Integer
Returns line number of the end of this range.
99 100 101 |
# File 'lib/parser/source/range.rb', line 99 def last_line @source_buffer.line_for_position(@end_pos) end |
#line ⇒ Integer Also known as: first_line
Line number of the beginning of this range. By default, the first line of a buffer is 1; as such, line numbers are most commonly one-based.
83 84 85 |
# File 'lib/parser/source/range.rb', line 83 def line @source_buffer.line_for_position(@begin_pos) end |
#overlaps?(other) ⇒ Boolean
Return ‘true` iff this range is not disjoint from `other`.
250 251 252 |
# File 'lib/parser/source/range.rb', line 250 def overlaps?(other) !disjoint?(other) end |
#resize(new_size) ⇒ Range
Returns a range beginning at the same point as this range and length ‘new_size`.
201 202 203 |
# File 'lib/parser/source/range.rb', line 201 def resize(new_size) with(end_pos: @begin_pos + new_size) end |
#size ⇒ Integer Also known as: length
Returns amount of characters included in this range.
70 71 72 |
# File 'lib/parser/source/range.rb', line 70 def size @end_pos - @begin_pos end |
#source ⇒ String
Returns all source code covered by this range.
132 133 134 |
# File 'lib/parser/source/range.rb', line 132 def source @source_buffer.slice(@begin_pos, @end_pos - @begin_pos) end |
#source_line ⇒ String
Returns a line of source code containing the beginning of this range.
125 126 127 |
# File 'lib/parser/source/range.rb', line 125 def source_line @source_buffer.source_line(line) end |
#to_a ⇒ Array<Integer>
Returns a set of character indexes contained in this range.
148 149 150 |
# File 'lib/parser/source/range.rb', line 148 def to_a (@begin_pos...@end_pos).to_a end |
#to_range ⇒ Range
Returns a Ruby range with the same ‘begin_pos` and `end_pos`.
155 156 157 |
# File 'lib/parser/source/range.rb', line 155 def to_range self.begin_pos...self.end_pos end |
#to_s ⇒ String
Composes a GNU/Clang-style string representation of the beginning of this range.
For example, for the following range in file ‘foo.rb`,
def foo
^^^
‘to_s` will return `foo.rb:1:5`. Note that the column index is one-based.
173 174 175 176 177 |
# File 'lib/parser/source/range.rb', line 173 def to_s line, column = @source_buffer.decompose_position(@begin_pos) [@source_buffer.name, line, column + 1].join(':') end |