IronPython.Compiler.RuntimeScriptCode.RuntimeScriptCode C# (CSharp) Method

RuntimeScriptCode() public method

public RuntimeScriptCode ( IronPython.Compiler.Ast.PythonAst ast, CodeContext codeContext ) : System
ast IronPython.Compiler.Ast.PythonAst
codeContext CodeContext
return System
        public RuntimeScriptCode(PythonAst/*!*/ ast, CodeContext/*!*/ codeContext)
            : base(ast) {
            Debug.Assert(codeContext.GlobalScope.GetExtension(codeContext.LanguageContext.ContextId) != null);
            Debug.Assert(ast.Type == typeof(MSAst.Expression<Func<FunctionCode, object>>));

            _optimizedContext = codeContext;
        }