(type, isSpread, tupleNameSource)
| 26499 | // |
| 26500 | // @api |
| 26501 | function createSyntheticExpression(type, isSpread, tupleNameSource) { |
| 26502 | if (isSpread === void 0) { isSpread = false; } |
| 26503 | var node = createBaseNode(232 /* SyntaxKind.SyntheticExpression */); |
| 26504 | node.type = type; |
| 26505 | node.isSpread = isSpread; |
| 26506 | node.tupleNameSource = tupleNameSource; |
| 26507 | return node; |
| 26508 | } |
| 26509 | // @api |
| 26510 | function createSyntaxList(children) { |
| 26511 | var node = createBaseNode(348 /* SyntaxKind.SyntaxList */); |
no test coverage detected