(dir)
| 568 | const { node } = parseWithElementTransform(`<div v-foo:bar="hello" />`, { |
| 569 | directiveTransforms: { |
| 570 | foo(dir) { |
| 571 | _dir = dir |
| 572 | return { |
| 573 | props: [createObjectProperty(dir.arg!, dir.exp!)], |
| 574 | } |
| 575 | }, |
| 576 | }, |
| 577 | }) |
| 578 |
nothing calls this directly
no test coverage detected