IronPython.Compiler.ClosureExpression.MakeClosureCellExpression.MakeClosureCellInstruction.Run C# (CSharp) Method

Run() public method

public Run ( InterpretedFrame frame ) : int
frame Microsoft.Scripting.Interpreter.InterpretedFrame
return int
                public override int Run(InterpretedFrame frame) {
                    frame.Push(PythonOps.MakeClosureCell());
                    return +1;
                }
            }
ClosureExpression.MakeClosureCellExpression.MakeClosureCellInstruction