1 implementation of GetText
Microsoft.CodeAnalysis.CSharp.Workspaces (1)
src\Workspaces\SharedUtilitiesAndExtensions\Compiler\CSharp\Services\SyntaxFacts\CSharpSyntaxFacts.cs (1)
438
public string
GetText
(int kind)
8 references to GetText
Microsoft.CodeAnalysis.Features (6)
Completion\Providers\AbstractAwaitCompletionProvider.cs (3)
53
_falseKeyword = syntaxFacts.
GetText
(syntaxFacts.SyntaxKinds.FalseKeyword);
54
_awaitKeyword = syntaxFacts.
GetText
(syntaxFacts.SyntaxKinds.AwaitKeyword);
191
var asyncChange = new TextChange(new TextSpan(GetAsyncKeywordInsertionPosition(declaration), 0), syntaxFacts.
GetText
(syntaxKinds.AsyncKeyword) + " ");
LanguageServices\AnonymousTypeDisplayService\AbstractStructuralTypeDisplayService.cs (1)
40
new SymbolDisplayPart(SymbolDisplayPartKind.Keyword, symbol: null, SyntaxFactsService.
GetText
(SyntaxFactsService.SyntaxKinds.DelegateKeyword)),
SplitOrMergeIfStatements\AbstractMergeIfStatementsCodeRefactoringProvider.cs (1)
58
syntaxFacts.
GetText
(syntaxKinds.IfKeyword)),
SplitOrMergeIfStatements\AbstractSplitIfStatementCodeRefactoringProvider.cs (1)
55
syntaxFacts.
GetText
(syntaxKinds.IfKeyword)),
Microsoft.CodeAnalysis.Workspaces (1)
FindSymbols\FindReferences\FindReferenceCache.cs (1)
249
this.SyntaxFacts.
GetText
(this.SyntaxFacts.SyntaxKinds.NewKeyword),
Microsoft.VisualStudio.LanguageServices.CSharp (1)
LanguageService\CSharpHelpContextService.cs (1)
228
text = Keyword(syntaxFacts.
GetText
(token.RawKind));