Exception: Exception
- Defined in:
- lib/web_console/integration.rb
Instance Method Summary collapse
-
#bindings ⇒ Object
Returns an array of the exception backtrace locations bindings.
Instance Method Details
#bindings ⇒ Object
Returns an array of the exception backtrace locations bindings.
The list won’t map to the traces in #backtrace 1 to 1, because we can’t build bindings for every trace (C functions, for example).
Every integration should set the instance variable.
8 9 10 |
# File 'lib/web_console/integration.rb', line 8 def bindings defined?(@bindings) ? @bindings : [] end |