(head, templateSpans)
| 23773 | } |
| 23774 | // @api |
| 23775 | function createTemplateLiteralType(head, templateSpans) { |
| 23776 | var node = createBaseNode(198 /* SyntaxKind.TemplateLiteralType */); |
| 23777 | node.head = head; |
| 23778 | node.templateSpans = createNodeArray(templateSpans); |
| 23779 | node.transformFlags = 1 /* TransformFlags.ContainsTypeScript */; |
| 23780 | return node; |
| 23781 | } |
| 23782 | // @api |
| 23783 | function updateTemplateLiteralType(node, head, templateSpans) { |
| 23784 | return node.head !== head |
no test coverage detected