class Squash::Symbolicator::Line
An address ranged mapped to a specific line of code, as part of a {Lines} aggregation. No symbol data is included.
Public Instance Methods
<=>(other)
click to toggle source
@private
# File lib/squash/symbolicator/lines.rb, line 30 def <=>(other) raise ArgumentError unless other.kind_of?(Squash::Symbolicator::Line) start_address <=> other.start_address end