Class: Google::Cloud::Debugger::Breakpoint::StackFrame

Inherits:
Object
  • Object
show all
Defined in:
lib/google/cloud/debugger/breakpoint/stack_frame.rb

Overview

StackFrame

Represents a stack frame context.

See also #stack_frames.

Instance Attribute Summary collapse

Instance Attribute Details

#argumentsObject

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

#functionObject

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

#localsObject

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

#locationObject

Source location of the call site.



36
37
38
# File 'lib/google/cloud/debugger/breakpoint/stack_frame.rb', line 36

def location
  @location
end