Ejemplo n.º 1
0
 public CandidateFunctionMember(MethPropWithInst mpwi, TypeArray @params, byte ctypeLift, bool fExpanded)
 {
     this.mpwi = mpwi;
     this.@params = @params;
     this.ctypeLift = ctypeLift;
     this.fExpanded = fExpanded;
 }
 public CandidateFunctionMember(MethPropWithInst mpwi, TypeArray @params, byte ctypeLift, bool fExpanded)
 {
     this.mpwi      = mpwi;
     this.@params   = @params;
     this.ctypeLift = ctypeLift;
     this.fExpanded = fExpanded;
 }
Ejemplo n.º 3
0
 public ErrArg(MethPropWithInst mpwi)
 {
     this.eak               = ErrArgKind.MethWithInst;
     this.eaf               = ErrArgFlags.None;
     this.mpwiMemo          = new MethPropWithInstMemo();
     this.mpwiMemo.sym      = mpwi.Sym;
     this.mpwiMemo.ats      = mpwi.Ats;
     this.mpwiMemo.typeArgs = mpwi.TypeArgs;
 }
 public GroupToArgsBinderResult()
 {
     BestResult         = new MethPropWithInst();
     InaccessibleResult = new MethPropWithInst();
     UninferableResult  = new MethPropWithInst();
 }
Ejemplo n.º 5
0
 private ErrArgRef(MethPropWithInst mpwi)
     : base(mpwi)
 {
     this.eaf = ErrArgFlags.Ref;
 }
Ejemplo n.º 6
0
 public void SetUserDefinedCallMethod(MethPropWithInst value)
 {
     _UserDefinedCallMethod = value;
 }
Ejemplo n.º 7
0
 public void SetUserDefinedCallMethod(MethPropWithInst value) { _UserDefinedCallMethod = value; }