2 implementations of Interpolation
Microsoft.CodeAnalysis.CSharp.Workspaces (1)
CSharpSyntaxKinds.cs (1)
159public int Interpolation => (int)SyntaxKind.Interpolation;
Microsoft.CodeAnalysis.VisualBasic.Workspaces (1)
VisualBasicSyntaxKinds.vb (1)
164Public ReadOnly Property Interpolation As Integer = SyntaxKind.Interpolation Implements ISyntaxKinds.Interpolation
4 references to Interpolation
Microsoft.CodeAnalysis.Features (2)
EmbeddedLanguages\DateAndTime\LanguageServices\DateAndTimeLanguageDetector.cs (1)
86if (interpolation?.RawKind != syntaxFacts.SyntaxKinds.Interpolation)
EmbeddedLanguages\EmbeddedLanguageDetector.cs (1)
147if (interpolation?.RawKind != syntaxFacts.SyntaxKinds.Interpolation)
Microsoft.CodeAnalysis.VisualBasic.Workspaces (1)
VisualBasicSyntaxKinds.vb (1)
164Public ReadOnly Property Interpolation As Integer = SyntaxKind.Interpolation Implements ISyntaxKinds.Interpolation
Microsoft.CodeAnalysis.Workspaces (1)
ISyntaxFactsExtensions.cs (1)
795=> node?.RawKind == syntaxFacts.SyntaxKinds.Interpolation;