(sourceFile, preferences, literal)
| 132420 | }); |
| 132421 | } |
| 132422 | function completionNameForLiteral(sourceFile, preferences, literal) { |
| 132423 | return typeof literal === "object" ? ts.pseudoBigIntToString(literal) + "n" : |
| 132424 | ts.isString(literal) ? ts.quote(sourceFile, preferences, literal) : JSON.stringify(literal); |
| 132425 | } |
| 132426 | function createCompletionEntryForLiteral(sourceFile, preferences, literal) { |
| 132427 | return { name: completionNameForLiteral(sourceFile, preferences, literal), kind: "string" /* ScriptElementKind.string */, kindModifiers: "" /* ScriptElementKindModifier.none */, sortText: Completions.SortText.LocationPriority }; |
| 132428 | } |
no outgoing calls
no test coverage detected