(node, type, literal)
| 23509 | } |
| 23510 | // @api |
| 23511 | function updateTemplateLiteralTypeSpan(node, type, literal) { |
| 23512 | return node.type !== type |
| 23513 | || node.literal !== literal |
| 23514 | ? update(createTemplateLiteralTypeSpan(type, literal), node) |
| 23515 | : node; |
| 23516 | } |
| 23517 | // |
| 23518 | // Types |
| 23519 | // |
nothing calls this directly
no test coverage detected