13 references to IsVerbatimIdentifier
Microsoft.CodeAnalysis.CSharp (1)
Binder\Binder_Symbols.cs (1)
870LookupOptions options = GetSimpleNameLookupOptions(node, node.Identifier.IsVerbatimIdentifier());
Microsoft.CodeAnalysis.CSharp.CodeStyle (2)
CSharpSyntaxFacts.cs (2)
95=> token.IsVerbatimIdentifier(); 471return this.IsIdentifier(token) && !token.ContainsDiagnostics && token.ToString().Length == identifier.Length && token.IsVerbatimIdentifier();
Microsoft.CodeAnalysis.CSharp.CodeStyle.Fixes (1)
CSharpSimplificationHelpers.cs (1)
18if (syntaxToken.IsVerbatimIdentifier())
Microsoft.CodeAnalysis.CSharp.Workspaces (9)
CSharpSimplificationHelpers.cs (1)
18if (syntaxToken.IsVerbatimIdentifier())
CSharpSyntaxFacts.cs (2)
95=> token.IsVerbatimIdentifier(); 471return this.IsIdentifier(token) && !token.ContainsDiagnostics && token.ToString().Length == identifier.Length && token.IsVerbatimIdentifier();
Rename\CSharpRenameRewriterLanguageService.cs (2)
622newToken = _isVerbatim || (isAttributeName && oldToken.IsVerbatimIdentifier()) 628if (newToken.IsVerbatimIdentifier())
Simplification\CSharpSimplificationService.cs (1)
100if (syntaxToken.IsVerbatimIdentifier())
Simplification\Reducers\CSharpEscapingReducer.cs (1)
132var isVerbatimIdentifier = originalToken.IsVerbatimIdentifier();
Simplification\Simplifiers\ExpressionSimplifier.cs (1)
152text = declIdentifier.IsVerbatimIdentifier() ? declIdentifier.ToString()[1..] : declIdentifier.ToString();
Simplification\Simplifiers\NameSimplifier.cs (1)
125text = declIdentifier.IsVerbatimIdentifier() ? declIdentifier.ToString()[1..] : declIdentifier.ToString();