Class StackFrame
Represents a stack frame context.
Implements
Inherited Members
Namespace: Google.Apis.CloudDebugger.v2.Data
Assembly: Google.Apis.CloudDebugger.v2.dll
Syntax
public class StackFrame : IDirectResponseSchema
Properties
Arguments
Set of arguments passed to this function. Note that this might not be populated for all stack frames.
Declaration
[JsonProperty("arguments")]
public virtual IList<Variable> Arguments { get; set; }
Property Value
Type | Description |
---|---|
IList<Variable> |
ETag
The ETag of the item.
Declaration
public virtual string ETag { get; set; }
Property Value
Type | Description |
---|---|
string |
Function
Demangled function name at the call site.
Declaration
[JsonProperty("function")]
public virtual string Function { get; set; }
Property Value
Type | Description |
---|---|
string |
Locals
Set of local variables at the stack frame location. Note that this might not be populated for all stack frames.
Declaration
[JsonProperty("locals")]
public virtual IList<Variable> Locals { get; set; }
Property Value
Type | Description |
---|---|
IList<Variable> |
Location
Source location of the call site.
Declaration
[JsonProperty("location")]
public virtual SourceLocation Location { get; set; }
Property Value
Type | Description |
---|---|
SourceLocation |