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