13 references to IsInterpolatedStringHandler
Microsoft.CodeAnalysis.CSharp (11)
Binder\Binder_Conversions.cs (1)
85!conversion.IsInterpolatedStringHandler &&
Binder\Binder_Expressions.cs (3)
3513if (kind.IsInterpolatedStringHandler) 3692Debug.Assert(interpolatedStringConversion.IsInterpolatedStringHandler); 5911if (argument is BoundConversion { Conversion.IsInterpolatedStringHandler: true, Operand: var operand })
Binder\Semantics\Conversions\ConversionsBase.cs (1)
644!conversion.IsInterpolatedStringHandler &&
Binder\Semantics\OverloadResolution\OverloadResolution.cs (3)
2617isInterpolatedStringHandlerConversion = c1.IsInterpolatedStringHandler && c2.IsInterpolatedStringHandler; 4594if (hasInterpolatedStringRefMismatch && !conversion.IsInterpolatedStringHandler)
Lowering\LocalRewriter\LocalRewriter.cs (1)
1117return expr is BoundConversion { Conversion: { IsInterpolatedStringHandler: true }, Type: { IsValueType: true } };
Lowering\LocalRewriter\LocalRewriter_StringInterpolation.cs (1)
251Debug.Assert(arguments.All(arg => arg is not BoundConversion { Conversion: { IsInterpolatedStringHandler: true }, ExplicitCastInCode: false }));
Operations\CSharpOperationFactory.cs (1)
2419Debug.Assert(conversion.Conversion.IsInterpolatedStringHandler);
Microsoft.CodeAnalysis.CSharp.Semantic.UnitTests (2)
Semantics\InterpolationTests.cs (1)
4612Assert.True(semanticInfo.ImplicitConversion.IsInterpolatedStringHandler);
Semantics\RawInterpolationTests_Handler.cs (1)
2913Assert.True(semanticInfo.ImplicitConversion.IsInterpolatedStringHandler);