IronPython.Compiler.CompilationMode.MakeScriptCode C# (CSharp) Method

MakeScriptCode() public method

public MakeScriptCode ( IronPython.Compiler.Ast.PythonAst ast ) : ScriptCode
ast IronPython.Compiler.Ast.PythonAst
return Microsoft.Scripting.ScriptCode
        public virtual ScriptCode MakeScriptCode(PythonAst ast) {
            return new RuntimeScriptCode(ast, ast.ModuleContext.GlobalContext);
        }