1 write to type2
Microsoft.CSharp (1)
Microsoft\CSharp\RuntimeBinder\Semantics\BinOpArgInfo.cs (1)
20
type2
= arg2.Type;
20 references to type2
Microsoft.CSharp (20)
Microsoft\CSharp\RuntimeBinder\Semantics\BinOpArgInfo.cs (3)
22
typeRaw2 =
type2
.StripNubs();
24
pt2 =
type2
.IsPredefined ?
type2
.PredefinedType : PredefinedType.PT_COUNT;
Microsoft\CSharp\RuntimeBinder\Semantics\Operators.cs (17)
417
int nT = WhichBofsIsBetter(binopSignatures[bestSignature], binopSignatures[index], info.type1, info.
type2
);
443
if (WhichBofsIsBetter(binopSignatures[bestSignature], binopSignatures[index], info.type1, info.
type2
) >= 0)
460
if (info.type1 is NullableType && info.
type2
is NullType)
465
if (info.type1 is NullType && info.
type2
is NullableType)
467
arg1 = ExprFactory.CreateZeroInit(info.
type2
);
694
if (!info.ValidForDelegate() || !info.type1.IsDelegateType && !info.
type2
.IsDelegateType)
700
if (info.type1 == info.
type2
)
702
prgbofs.Add(new BinOpFullSig(info.type1, info.
type2
, BindDelBinOp, OpSigFlags.Reference, LiftFlags.None, BinOpFuncKind.DelBinOp));
710
bool t1tot2 = info.
type2
.IsDelegateType && canConvert(info.arg1, info.
type2
);
715
prgbofs.Add(new BinOpFullSig(info.
type2
, info.
type2
, BindDelBinOp, OpSigFlags.Reference, LiftFlags.None, BinOpFuncKind.DelBinOp));
751
if (info.
type2
is NullableType)
820
if (info.
type2
!= info.typeRaw2)
822
Debug.Assert(info.
type2
is NullableType);
918
if (info.type1 != info.typeRaw1 || info.
type2
!= info.typeRaw2)
925
CType type2 = info.
type2
;