Beispiel #1
0
 public BuiltinMethod(string name, MethodBase[] mg, bool foldable)
 {
     this.name = name;
       this.methods = mg;
       meth = MethodBinder.MakeBinder(binder, name, mg, BinderType.Normal);
       this.foldable = foldable;
 }
Beispiel #2
0
 public TargetSet(MethodBinder binder, int count)
 {
     this._binder = binder;
     this._count  = count;
     _targets     = new List <MethodCandidate>();
 }
Beispiel #3
0
 public TargetSet(MethodBinder binder, int count) {
     this._binder = binder;
     this._count = count;
     _targets = new List<MethodCandidate>();
 }