(target, source, args, runtime2)
| 10092 | return feature; |
| 10093 | } |
| 10094 | install(target, source, args, runtime2) { |
| 10095 | var feature = this; |
| 10096 | queueMicrotask(function() { |
| 10097 | runtime2.reactivity.createEffect( |
| 10098 | function() { |
| 10099 | feature.commands.execute( |
| 10100 | runtime2.makeContext(target, feature, target, null) |
| 10101 | ); |
| 10102 | }, |
| 10103 | function() { |
| 10104 | }, |
| 10105 | { element: target } |
| 10106 | ); |
| 10107 | }); |
| 10108 | } |
| 10109 | }; |
| 10110 | |
| 10111 | // src/parsetree/commands/template.js |
nothing calls this directly
no test coverage detected