StackFrame¶
-
class
Cocotec.CocoPlatform.Coco.StackFrame¶ A single stack frame.
Public Functions
-
override string
ToString()¶
Properties
-
Cocotec.CocoPlatform.Coco.Node
Node{ }¶ The node that corresponds to the function being called.
-
Cocotec.CocoPlatform.Coco.Node
CurrentNode{ }¶ The node that this stack frame is currently executing.
-
string
Name{ }¶ The name of the called function.
-
string
FullyQualifiedName{ }¶ The name of the called function.
-
List<Cocotec.CocoPlatform.Coco.VariableBinding>
BoundVariables{ }¶ All variables bound by this frame, including arguments to the function. These will be sorted in declaration order.
-
override string