private LookupCompilationDelegate /*!*/ _target, _tracingTarget; // lazily compiled targets

        public PythonScriptCode(Compiler.Ast.PythonAst /*!*/ ast)
            : base(ast)
        {
            Assert.NotNull(ast);
            Debug.Assert(ast.Type == typeof(Expression <LookupCompilationDelegate>));
        }
Exemple #2
0
        private Func <CodeContext /*!*/, FunctionCode /*!*/, object> /*!*/ _target, _tracingTarget; // lazily compiled targets

        public PythonScriptCode(Compiler.Ast.PythonAst /*!*/ ast)
            : base(ast)
        {
            Assert.NotNull(ast);
            Debug.Assert(ast.Type == typeof(Expression <Func <CodeContext /*!*/, FunctionCode /*!*/, object> >));
        }
Exemple #3
0
 public RunnableScriptCode(Compiler.Ast.PythonAst ast)
     : base(ast.SourceUnit)
 {
     _ast = ast;
 }
 public RunnableScriptCode(Compiler.Ast.PythonAst ast)
     : base(ast.SourceUnit) {
     _ast = ast;
 }