class StackFrame

Attributes

filename[RW]
klass[RW]
line_number[RW]
method[RW]

Public Instance Methods

==(other) click to toggle source
# File lib/stackframe.rb, line 12
def ==(other)
  line_number == other.line_number && 
    self.method == other.method &&
    klass == other.klass && 
    filename == other.filename
end