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