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