Microsoft.Scripting.Debugging.DebugFrame.DebugFrame C# (CSharp) Method

DebugFrame() private method

private DebugFrame ( DebugThread thread, Microsoft.Scripting.Debugging.FunctionInfo funcInfo ) : System
thread DebugThread
funcInfo Microsoft.Scripting.Debugging.FunctionInfo
return System
        internal DebugFrame(
            DebugThread thread,
            FunctionInfo funcInfo) {
            _thread = thread;
            _funcInfo = funcInfo;
            _variables = new  Dictionary<IList<VariableInfo>, ScopeData>();
        }

Same methods

DebugFrame::DebugFrame ( DebugThread thread, Microsoft.Scripting.Debugging.FunctionInfo funcInfo, IRuntimeVariables liftedLocals, int frameOrder ) : System