11 overrides of IsInterpolatedStringHandlerType
Microsoft.CodeAnalysis.CSharp (9)
Symbols\AnonymousTypes\PublicSymbols\AnonymousManager.TypeOrDelegatePublicSymbol.cs (1)
44internal sealed override bool IsInterpolatedStringHandlerType => false;
Symbols\AnonymousTypes\SynthesizedSymbols\AnonymousType.TypeOrDelegateTemplateSymbol.cs (1)
116internal sealed override bool IsInterpolatedStringHandlerType => false;
Symbols\ErrorTypeSymbol.cs (1)
436internal override bool IsInterpolatedStringHandlerType => false;
Symbols\Metadata\PE\PENamedTypeSymbol.cs (1)
420internal sealed override bool IsInterpolatedStringHandlerType
Symbols\Source\ImplicitNamedTypeSymbol.cs (1)
168internal override bool IsInterpolatedStringHandlerType => false;
Symbols\Source\SourceNamedTypeSymbol.cs (1)
1328internal sealed override bool IsInterpolatedStringHandlerType
Symbols\Synthesized\SynthesizedContainer.cs (1)
105internal sealed override bool IsInterpolatedStringHandlerType => false;
Symbols\Synthesized\SynthesizedEmbeddedAttributeSymbol.cs (1)
106internal override bool IsInterpolatedStringHandlerType => false;
Symbols\Wrapped\WrappedNamedTypeSymbol.cs (1)
195internal override bool IsInterpolatedStringHandlerType => _underlyingType.IsInterpolatedStringHandlerType;
Microsoft.CodeAnalysis.CSharp.ExpressionEvaluator.ExpressionCompiler (1)
Symbols\EENamedTypeSymbol.cs (1)
358internal override bool IsInterpolatedStringHandlerType => false;
Microsoft.CodeAnalysis.CSharp.Symbol.UnitTests (1)
Symbols\MockNamedTypeSymbol.cs (1)
334internal override bool IsInterpolatedStringHandlerType => false;
34 references to IsInterpolatedStringHandlerType
Microsoft.CodeAnalysis.CSharp (9)
Binder\Binder_InterpolatedString.cs (2)
860Debug.Assert(interpolatedStringParameter is { Type: NamedTypeSymbol { IsInterpolatedStringHandlerType: true } } 865Type: ArrayTypeSymbol { ElementType: NamedTypeSymbol { IsInterpolatedStringHandlerType: true } },
Binder\Semantics\Conversions\Conversions.cs (1)
131if (destination is NamedTypeSymbol { IsInterpolatedStringHandlerType: true })
Binder\Semantics\OverloadResolution\OverloadResolution.cs (1)
3680&& parameters.ParameterTypes[argumentPosition].Type is NamedTypeSymbol { IsInterpolatedStringHandlerType: true, IsValueType: true })
Lowering\LocalRewriter\LocalRewriter_Call.cs (1)
911Debug.Assert(parameters[i].Type is NamedTypeSymbol { IsInterpolatedStringHandlerType: true, IsValueType: true });
Lowering\LocalRewriter\LocalRewriter_Conversion.cs (1)
25Debug.Assert(node.Type is NamedTypeSymbol { IsInterpolatedStringHandlerType: true });
Symbols\Metadata\PE\PEParameterSymbol.cs (1)
850else if (paramNames.IsDefault || Type is not NamedTypeSymbol { IsInterpolatedStringHandlerType: true })
Symbols\Source\SourceComplexParameterSymbol.cs (1)
1238if (Type is not NamedTypeSymbol { IsInterpolatedStringHandlerType: true } handlerType)
Symbols\Wrapped\WrappedNamedTypeSymbol.cs (1)
195internal override bool IsInterpolatedStringHandlerType => _underlyingType.IsInterpolatedStringHandlerType;
Microsoft.CodeAnalysis.CSharp.Semantic.UnitTests (23)
Semantics\InterpolationTests.cs (12)
6925Assert.True(customHandler.IsInterpolatedStringHandlerType); 7000Assert.True(customHandler.IsInterpolatedStringHandlerType); 7078Assert.True(customHandler.IsInterpolatedStringHandlerType); 7153Assert.True(customHandler.IsInterpolatedStringHandlerType); 7261Assert.True(customHandler.IsInterpolatedStringHandlerType); 7301Assert.True(customHandler.IsInterpolatedStringHandlerType); 7341Assert.True(customHandler.IsInterpolatedStringHandlerType); 7381Assert.True(customHandler.IsInterpolatedStringHandlerType); 7458Assert.True(customHandler.IsInterpolatedStringHandlerType); 7535Assert.True(customHandler.IsInterpolatedStringHandlerType); 7616Assert.True(customHandler.IsInterpolatedStringHandlerType); 7778Assert.True(customHandler.IsInterpolatedStringHandlerType);
Semantics\RawInterpolationTests_Handler.cs (11)
5226Assert.True(customHandler.IsInterpolatedStringHandlerType); 5313Assert.True(customHandler.IsInterpolatedStringHandlerType); 5403Assert.True(customHandler.IsInterpolatedStringHandlerType); 5490Assert.True(customHandler.IsInterpolatedStringHandlerType); 5577Assert.True(customHandler.IsInterpolatedStringHandlerType); 5624Assert.True(customHandler.IsInterpolatedStringHandlerType); 5671Assert.True(customHandler.IsInterpolatedStringHandlerType); 5760Assert.True(customHandler.IsInterpolatedStringHandlerType); 5849Assert.True(customHandler.IsInterpolatedStringHandlerType); 5942Assert.True(customHandler.IsInterpolatedStringHandlerType); 5972Assert.True(customHandler.IsInterpolatedStringHandlerType);
Microsoft.CodeAnalysis.Test.Utilities (2)
Compilation\ControlFlowGraphVerifier.cs (2)
953&& ctorContainingType.GetSymbol().IsInterpolatedStringHandlerType 976&& containingType.GetSymbol().IsInterpolatedStringHandlerType;