(sourceNode)
| 22918 | } |
| 22919 | // @api |
| 22920 | function createStringLiteralFromNode(sourceNode) { |
| 22921 | var node = createBaseStringLiteral(ts.getTextOfIdentifierOrLiteral(sourceNode), /*isSingleQuote*/ undefined); |
| 22922 | node.textSourceNode = sourceNode; |
| 22923 | return node; |
| 22924 | } |
| 22925 | // @api |
| 22926 | function createRegularExpressionLiteral(text) { |
| 22927 | var node = createBaseLiteral(13 /* SyntaxKind.RegularExpressionLiteral */, text); |
nothing calls this directly
no test coverage detected