Class: Google::Cloud::Debugger::Breakpoint::StackFrame
- Inherits:
-
Object
- Object
- Google::Cloud::Debugger::Breakpoint::StackFrame
- Defined in:
- lib/google/cloud/debugger/breakpoint/stack_frame.rb
Overview
Instance Attribute Summary collapse
-
#arguments ⇒ Object
Set of arguments passed to this function.
-
#function ⇒ Object
Demangled function name at the call site.
-
#locals ⇒ Object
Set of local variables at the stack frame location.
-
#location ⇒ Object
Source location of the call site.
Instance Attribute Details
#arguments ⇒ Object
Set of arguments passed to this function. Note that this might not be populated for all stack frames.
41 42 43 |
# File 'lib/google/cloud/debugger/breakpoint/stack_frame.rb', line 41 def arguments @arguments end |
#function ⇒ Object
Demangled function name at the call site.
32 33 34 |
# File 'lib/google/cloud/debugger/breakpoint/stack_frame.rb', line 32 def function @function end |
#locals ⇒ Object
Set of local variables at the stack frame location. Note that this might not be populated for all stack frames.
46 47 48 |
# File 'lib/google/cloud/debugger/breakpoint/stack_frame.rb', line 46 def locals @locals end |
#location ⇒ Object
Source location of the call site.
36 37 38 |
# File 'lib/google/cloud/debugger/breakpoint/stack_frame.rb', line 36 def location @location end |