(sourceFile, preferences, literal)
| 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 | } |
| 132429 | function createCompletionEntry(symbol, sortText, replacementToken, contextToken, location, sourceFile, host, program, name, needsConvertPropertyAccess, origin, recommendedCompletion, propertyAccessToConvert, isJsxInitializer, importCompletionNode, useSemicolons, options, preferences, completionKind, formatContext, isJsxIdentifierExpected, isRightOfOpenTag) { |
| 132430 | var _a, _b; |
| 132431 | var insertText; |
no test coverage detected