41 references to InterpolatedStringEndToken
Microsoft.CodeAnalysis.CSharp (6)
Parser\LanguageParser_InterpolatedString.cs (2)
245Lexer.InterpolatedStringKind.Normal => SyntaxKind.InterpolatedStringEndToken, 246Lexer.InterpolatedStringKind.Verbatim => SyntaxKind.InterpolatedStringEndToken,
Syntax\InterpolatedStringExpressionSyntax.cs (2)
12=> InterpolatedStringExpression(stringStartToken, Token(SyntaxKind.InterpolatedStringEndToken)); 15=> InterpolatedStringExpression(stringStartToken, contents, Token(SyntaxKind.InterpolatedStringEndToken));
Syntax\SyntaxKindFacts.cs (2)
211case SyntaxKind.InterpolatedStringEndToken: 1737case SyntaxKind.InterpolatedStringEndToken:
Microsoft.CodeAnalysis.CSharp.CodeStyle (3)
CSharpSyntaxFacts.cs (1)
495case SyntaxKind.InterpolatedStringEndToken:
J\s\src\Workspaces\SharedUtilitiesAndExtensions\Compiler\CSharp\Extensions\SyntaxTreeExtensions.cs\SyntaxTreeExtensions.cs (1)
447SyntaxKind.InterpolatedStringEndToken or
SpacingFormattingRule.cs (1)
480if (currentKind is SyntaxKind.InterpolatedStringEndToken or
Microsoft.CodeAnalysis.CSharp.Features (4)
BraceCompletion\InterpolatedStringBraceCompletionService.cs (1)
48=> rightToken.IsKind(SyntaxKind.InterpolatedStringEndToken);
BraceMatching\StringLiteralBraceMatcher.cs (1)
50else if (token.IsKind(SyntaxKind.InterpolatedStringEndToken))
SplitStringLiteral\InterpolatedStringSplitter.cs (1)
70SyntaxFactory.Token(SyntaxKind.InterpolatedStringEndToken)
SplitStringLiteral\StringSplitter.cs (1)
73token.IsKind(SyntaxKind.InterpolatedStringEndToken) ||
Microsoft.CodeAnalysis.CSharp.Syntax.UnitTests (21)
Generated\Syntax.Test.xml.Generated.cs (4)
254=> InternalSyntaxFactory.InterpolatedStringExpression(InternalSyntaxFactory.Token(SyntaxKind.InterpolatedStringStartToken), new Microsoft.CodeAnalysis.Syntax.InternalSyntax.SyntaxList<Syntax.InternalSyntax.InterpolatedStringContentSyntax>(), InternalSyntaxFactory.Token(SyntaxKind.InterpolatedStringEndToken)); 1690Assert.Equal(SyntaxKind.InterpolatedStringEndToken, node.StringEndToken.Kind); 10230=> SyntaxFactory.InterpolatedStringExpression(SyntaxFactory.Token(SyntaxKind.InterpolatedStringStartToken), new SyntaxList<InterpolatedStringContentSyntax>(), SyntaxFactory.Token(SyntaxKind.InterpolatedStringEndToken)); 11666Assert.Equal(SyntaxKind.InterpolatedStringEndToken, node.StringEndToken.Kind());
Parsing\ExpressionParsingTests.cs (11)
55N(SyntaxKind.InterpolatedStringEndToken); 225N(SyntaxKind.InterpolatedStringEndToken); 251N(SyntaxKind.InterpolatedStringEndToken); 291N(SyntaxKind.InterpolatedStringEndToken); 299N(SyntaxKind.InterpolatedStringEndToken); 337N(SyntaxKind.InterpolatedStringEndToken); 345N(SyntaxKind.InterpolatedStringEndToken); 417N(SyntaxKind.InterpolatedStringEndToken); 4991N(SyntaxKind.InterpolatedStringEndToken); 5024N(SyntaxKind.InterpolatedStringEndToken); 5066N(SyntaxKind.InterpolatedStringEndToken);
Parsing\Utf8StringLiteralsParsingTests.cs (6)
523N(SyntaxKind.InterpolatedStringEndToken); 544N(SyntaxKind.InterpolatedStringEndToken); 565N(SyntaxKind.InterpolatedStringEndToken); 586N(SyntaxKind.InterpolatedStringEndToken); 740N(SyntaxKind.InterpolatedStringEndToken); 934N(SyntaxKind.InterpolatedStringEndToken);
Microsoft.CodeAnalysis.CSharp.Workspaces (6)
Classification\ClassificationHelpers.cs (2)
149|| token.IsKind(SyntaxKind.InterpolatedStringEndToken) 173case SyntaxKind.InterpolatedStringEndToken:
CodeGeneration\CSharpSyntaxGenerator.cs (1)
68=> SyntaxFactory.Token(SyntaxKind.InterpolatedStringEndToken);
CSharpSyntaxFacts.cs (1)
495case SyntaxKind.InterpolatedStringEndToken:
J\s\src\Workspaces\SharedUtilitiesAndExtensions\Compiler\CSharp\Extensions\SyntaxTreeExtensions.cs\SyntaxTreeExtensions.cs (1)
447SyntaxKind.InterpolatedStringEndToken or
SpacingFormattingRule.cs (1)
480if (currentKind is SyntaxKind.InterpolatedStringEndToken or
Microsoft.VisualStudio.LanguageServices.CSharp (1)
LanguageService\CSharpHelpContextService.cs (1)
114token.IsKind(SyntaxKind.InterpolatedStringEndToken) ||