Inheritance: IronPython.Compiler.Ast.AstWalkerNonRecursive
Example #1
0
 private PythonNameBinder(CompilerContext context)
 {
     _define    = new DefineBinder(this);
     _delete    = new DeleteBinder(this);
     _parameter = new ParameterBinder(this);
     _context   = context;
 }
Example #2
0
 private Binder(CompilerContext context)
 {
     this.define = new DefineBinder(this);
     this.delete = new DeleteBinder(this);
     this.parameter = new ParameterBinder(this);
     this.context = context;
 }
Example #3
0
 private PythonNameBinder(CompilerContext context)
 {
     _define = new DefineBinder(this);
     _delete = new DeleteBinder(this);
     _parameter = new ParameterBinder(this);
     _context = context;
 }