18 references to Ats
Microsoft.CSharp (18)
Microsoft\CSharp\RuntimeBinder\Errors\ErrorFmt.cs (2)
117this.swtMemo.ats = swt.Ats; 125this.mpwiMemo.ats = mpwi.Ats;
Microsoft\CSharp\RuntimeBinder\RuntimeBinder.cs (3)
800Type eventType = TypeManager.SubstType(eventCType, swtEvent.Ats).AssociatedSystemType; 849type = call.MethWithInst.Ats; 858type = prop.PropWithTypeSlot.Ats;
Microsoft\CSharp\RuntimeBinder\Semantics\ExpressionBinder.cs (1)
404pReturnType = mwi.Ats;
Microsoft\CSharp\RuntimeBinder\Semantics\Tree\MethodInfo.cs (2)
30AggregateType aggType = Method.Ats; 103AggregateType aggType = Method.Ats;
Microsoft\CSharp\RuntimeBinder\Semantics\Tree\PropertyInfo.cs (1)
30AggregateType aggType = Property.Ats;
Microsoft\CSharp\RuntimeBinder\Semantics\Tree\Visitors\ExpressionTreeRewriter.cs (1)
52Expr propInfo = ExprFactory.CreatePropertyInfo(prop.PropWithTypeSlot.Prop(), prop.PropWithTypeSlot.Ats);
Microsoft\CSharp\RuntimeBinder\Semantics\WithType.cs (8)
57return Ats; 74return swt1.Sym == swt2.Sym && swt1.Ats == swt2.Ats; 85return Sym == other.Sym && Ats == other.Ats; 92return (Sym?.GetHashCode() ?? 0) + (Ats?.GetHashCode() ?? 0); 170Set(swt.Sym as PropertySymbol, swt.Ats); 243Set(mpwi.Sym as MethodSymbol, mpwi.Ats, mpwi.TypeArgs);