Microsoft.Scripting.Interpreter.InterpretedFrame.InterpretedFrame C# (CSharp) Method

InterpretedFrame() private method

private InterpretedFrame ( Interpreter interpreter, StrongBox closure ) : System.Linq.Expressions
interpreter Interpreter
closure StrongBox
return System.Linq.Expressions
        internal InterpretedFrame(Interpreter interpreter, StrongBox<object>[] closure) {
            Interpreter = interpreter;
            StackIndex = interpreter.LocalCount;
            Data = new object[StackIndex + interpreter.Instructions.MaxStackDepth];

            int c = interpreter.Instructions.MaxContinuationDepth;
            if (c > 0) {
                _continuations = new int[c];
            }

            Closure = closure;
        }