(target, source, args, runtime2)
| 9638 | return feature; |
| 9639 | } |
| 9640 | install(target, source, args, runtime2) { |
| 9641 | var feature = this; |
| 9642 | queueMicrotask(function() { |
| 9643 | runtime2.reactivity.createEffect( |
| 9644 | function() { |
| 9645 | feature.commands.execute( |
| 9646 | runtime2.makeContext(target, feature, target, null) |
| 9647 | ); |
| 9648 | }, |
| 9649 | function() { |
| 9650 | }, |
| 9651 | { element: target } |
| 9652 | ); |
| 9653 | }); |
| 9654 | } |
| 9655 | }; |
| 9656 | |
| 9657 | // src/parsetree/commands/template.js |
nothing calls this directly
no test coverage detected