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