(keywordFilters, filterOutTsOnlyKeywords, isNewIdentifierLocation)
| 132276 | }; |
| 132277 | } |
| 132278 | function keywordCompletionData(keywordFilters, filterOutTsOnlyKeywords, isNewIdentifierLocation) { |
| 132279 | return { |
| 132280 | kind: 4 /* CompletionDataKind.Keywords */, |
| 132281 | keywordCompletions: getKeywordCompletions(keywordFilters, filterOutTsOnlyKeywords), |
| 132282 | isNewIdentifierLocation: isNewIdentifierLocation, |
| 132283 | }; |
| 132284 | } |
| 132285 | function keywordFiltersFromSyntaxKind(keywordCompletion) { |
| 132286 | switch (keywordCompletion) { |
| 132287 | case 152 /* SyntaxKind.TypeKeyword */: return 8 /* KeywordCompletionFilters.TypeKeyword */; |
no test coverage detected
searching dependent graphs…