(text, isSingleQuote)
| 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); |
no test coverage detected