1 implementation of Interpolation
Microsoft.CodeAnalysis.CSharp.Workspaces (1)
src\Workspaces\SharedUtilitiesAndExtensions\Compiler\CSharp\Services\SyntaxFacts\CSharpSyntaxKinds.cs (1)
180
public int
Interpolation
=> (int)SyntaxKind.Interpolation;
3 references to Interpolation
Microsoft.CodeAnalysis.Features (2)
EmbeddedLanguages\DateAndTime\LanguageServices\DateAndTimeLanguageDetector.cs (1)
59
if (interpolation?.RawKind != syntaxFacts.SyntaxKinds.
Interpolation
)
EmbeddedLanguages\EmbeddedLanguageDetector.cs (1)
167
if (interpolation?.RawKind != syntaxFacts.SyntaxKinds.
Interpolation
)
Microsoft.CodeAnalysis.Workspaces (1)
src\Workspaces\SharedUtilitiesAndExtensions\Compiler\Core\Services\SyntaxFacts\ISyntaxFactsExtensions.cs (1)
830
=> node?.RawKind == syntaxFacts.SyntaxKinds.
Interpolation
;