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