ScriptStackFrame
Overview
Script stack frame holds the locals and the current method when debugging a script. It's used for debugging purposes and can for example be used to show the state of the callstack and the locals defined on that call stack entry.
Location
- Reference: RemObjects.Script.dll
- Namespace: RemObjects.Script
Properties
Frame
Contains the EcmaScript environment record, this holds the locals for that function call, if any.
property Frame: EnvironmentRecord read;
EnvironmentRecord Frame { get; }
ReadOnly Property Frame() As EnvironmentRecord
Method
Contains the name of the current method or null if none (anonymous).
property Method: String read;
String Method { get; }
ReadOnly Property Method() As String
This
Holds the "this" for this method call.
property This: Object read;
Object This { get; }
ReadOnly Property This() As Object