Class: Sentry::StacktraceInterface
- Defined in:
- lib/sentry/interfaces/stacktrace.rb
Defined Under Namespace
Classes: Frame
Instance Attribute Summary collapse
-
#frames ⇒ Object
Returns the value of attribute frames.
Instance Method Summary collapse
Methods inherited from Interface
Instance Attribute Details
#frames ⇒ Object
Returns the value of attribute frames.
3 4 5 |
# File 'lib/sentry/interfaces/stacktrace.rb', line 3 def frames @frames end |
Instance Method Details
#to_hash ⇒ Object
5 6 7 8 9 |
# File 'lib/sentry/interfaces/stacktrace.rb', line 5 def to_hash data = super data[:frames] = data[:frames].map(&:to_hash) data end |