IronPython.Compiler.Ast.PythonNameBinder.BindAst C# (CSharp) Method

BindAst() static private method

static private BindAst ( IronPython.Compiler.Ast.PythonAst ast, CompilerContext context ) : void
ast IronPython.Compiler.Ast.PythonAst
context CompilerContext
return void
        internal static void BindAst(PythonAst ast, CompilerContext context) {
            Assert.NotNull(ast, context);

            PythonNameBinder binder = new PythonNameBinder(context);
            binder.Bind(ast);
        }

Usage Example

Esempio n. 1
0
 /// <summary>
 /// Binds an AST and makes it capable of being reduced and compiled.  Before calling Bind an AST cannot successfully
 /// be reduced.
 /// </summary>
 public void Bind()
 {
     PythonNameBinder.BindAst(this, _compilerContext);
 }
All Usage Examples Of IronPython.Compiler.Ast.PythonNameBinder::BindAst