IronPython.Compiler.Ast.GetGlobalContextExpression.GetGlobalContextInstruction.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.GetGlobalContext((CodeContext)frame.Pop()));
                return +1;
            }
        }
GetGlobalContextExpression.GetGlobalContextInstruction