(node, { state, path })
| 501 | next(); |
| 502 | }, |
| 503 | Identifier(node, { state, path }) { |
| 504 | handle_identifier(node, state, path); |
| 505 | }, |
| 506 | ImportDeclaration(node, { state }) { |
| 507 | state.props_insertion_point = node.end ?? state.props_insertion_point; |
| 508 | if (node.source.value === 'svelte') { |
nothing calls this directly
no test coverage detected