Method: Sentry::Backtrace#==
- Defined in:
- lib/sentry/backtrace.rb
#==(other) ⇒ Object
This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.
87 88 89 90 91 92 93 |
# File 'lib/sentry/backtrace.rb', line 87 def ==(other) if other.respond_to?(:lines) lines == other.lines else false end end |