MCPcopy Index your code
hub / github.com/nodejs/node / createBaseStringLiteral

Function createBaseStringLiteral

test/fixtures/snapshot/typescript.js:22906–22910  ·  view source on GitHub ↗
(text, isSingleQuote)

Source from the content-addressed store, hash-verified

22904 return node;
22905 }
22906 function createBaseStringLiteral(text, isSingleQuote) {
22907 var node = createBaseLiteral(10 /* SyntaxKind.StringLiteral */, text);
22908 node.singleQuote = isSingleQuote;
22909 return node;
22910 }
22911 // @api
22912 function createStringLiteral(text, isSingleQuote, hasExtendedUnicodeEscape) {
22913 var node = createBaseStringLiteral(text, isSingleQuote);

Callers 2

createStringLiteralFunction · 0.85

Calls 1

createBaseLiteralFunction · 0.85

Tested by

no test coverage detected