13 references to IsInterpolatedStringHandler
Microsoft.CodeAnalysis.CSharp (11)
Binder\Binder_Conversions.cs (1)
84!conversion.IsInterpolatedStringHandler &&
Binder\Binder_Expressions.cs (3)
3475if (kind.IsInterpolatedStringHandler) 3654Debug.Assert(interpolatedStringConversion.IsInterpolatedStringHandler); 5815if (argument is BoundConversion { Conversion.IsInterpolatedStringHandler: true, Operand: var operand })
Binder\Semantics\Conversions\ConversionsBase.cs (1)
643!conversion.IsInterpolatedStringHandler &&
Binder\Semantics\OverloadResolution\OverloadResolution.cs (3)
2501isInterpolatedStringHandlerConversion = c1.IsInterpolatedStringHandler && c2.IsInterpolatedStringHandler; 4318if (hasInterpolatedStringRefMismatch && !conversion.IsInterpolatedStringHandler)
Lowering\LocalRewriter\LocalRewriter.cs (1)
1117return expr is BoundConversion { Conversion: { IsInterpolatedStringHandler: true }, Type: { IsValueType: true } };
Lowering\LocalRewriter\LocalRewriter_StringInterpolation.cs (1)
400Debug.Assert(arguments.All(arg => arg is not BoundConversion { Conversion: { IsInterpolatedStringHandler: true }, ExplicitCastInCode: false }));
Operations\CSharpOperationFactory.cs (1)
2384Debug.Assert(conversion.Conversion.IsInterpolatedStringHandler);
Microsoft.CodeAnalysis.CSharp.Semantic.UnitTests (2)
Semantics\InterpolationTests.cs (1)
4583Assert.True(semanticInfo.ImplicitConversion.IsInterpolatedStringHandler);
Semantics\RawInterpolationTests_Handler.cs (1)
2913Assert.True(semanticInfo.ImplicitConversion.IsInterpolatedStringHandler);