BindAst() статический приватный Метод

static private BindAst ( IronPython.Compiler.Ast.PythonAst ast, CompilerContext context ) : void
ast IronPython.Compiler.Ast.PythonAst
context CompilerContext
Результат void
Пример #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);
 }
Пример #2
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);
     StarredExpressionChecker.Check(this, _compilerContext);
 }