6 instantiations of SynthesizedIntrinsicOperatorSymbol
Microsoft.CodeAnalysis.CSharp (6)
Compilation\CSharpCompilation.cs (2)
3936return new SynthesizedIntrinsicOperatorSymbol(csharpLeftType, name, csharpRightType, csharpReturnType).GetPublicSymbol(); 4162return new SynthesizedIntrinsicOperatorSymbol(csharpOperandType, name, csharpReturnType).GetPublicSymbol();
Compilation\CSharpSemanticModel.cs (4)
3798symbols = ImmutableArray.Create<Symbol>(new SynthesizedIntrinsicOperatorSymbol(unaryOperator.Operand.Type.StrippedType(), 3821symbols = ImmutableArray.Create<Symbol>(new SynthesizedIntrinsicOperatorSymbol(increment.Operand.Type.StrippedType(), 3854symbols = ImmutableArray.Create<Symbol>(new SynthesizedIntrinsicOperatorSymbol(objectType, 3895return new SynthesizedIntrinsicOperatorSymbol(leftType,
5 references to SynthesizedIntrinsicOperatorSymbol
Microsoft.CodeAnalysis.CSharp (3)
Symbols\Synthesized\SynthesizedIntrinsicOperatorSymbol.cs (3)
430var other = obj as SynthesizedIntrinsicOperatorSymbol; 464SynthesizedIntrinsicOperatorSymbol container,
Microsoft.CodeAnalysis.CSharp.Symbol.UnitTests (2)
Symbols\SymbolEqualityTests.cs (2)
46Assert.IsType<SynthesizedIntrinsicOperatorSymbol>(nonNullPlus.GetSymbol()); 47Assert.IsType<SynthesizedIntrinsicOperatorSymbol>(nullPlus.GetSymbol());