1 implementation of InterpolatedStringExpression
Microsoft.CodeAnalysis.CSharp.Workspaces (1)
src\Workspaces\SharedUtilitiesAndExtensions\Compiler\CSharp\Services\SyntaxFacts\CSharpSyntaxKinds.cs (1)
181
public int
InterpolatedStringExpression
=> (int)SyntaxKind.InterpolatedStringExpression;
2 references to InterpolatedStringExpression
Microsoft.CodeAnalysis.Features (1)
IntroduceVariable\AbstractIntroduceVariableService.State.cs (1)
233
if (syntaxKindsService.
InterpolatedStringExpression
== expression.RawKind && value is string)
Microsoft.CodeAnalysis.Workspaces (1)
src\Workspaces\SharedUtilitiesAndExtensions\Compiler\Core\Services\SyntaxFacts\ISyntaxFactsExtensions.cs (1)
827
=> node?.RawKind == syntaxFacts.SyntaxKinds.
InterpolatedStringExpression
;