(node, expression)
| 23178 | } |
| 23179 | // @api |
| 23180 | function updateComputedPropertyName(node, expression) { |
| 23181 | return node.expression !== expression |
| 23182 | ? update(createComputedPropertyName(expression), node) |
| 23183 | : node; |
| 23184 | } |
| 23185 | function createTypeParameterDeclaration(modifiersOrName, nameOrConstraint, constraintOrDefault, defaultType) { |
| 23186 | var name; |
| 23187 | var modifiers; |
nothing calls this directly
no test coverage detected