()
| 173 | interpreter, |
| 174 | js_import: (...urls) => Promise.all(urls.map((url) => import(url))), |
| 175 | get target() { |
| 176 | return isScript(currentElement) |
| 177 | ? currentElement.target.id |
| 178 | : currentElement.id; |
| 179 | }, |
| 180 | }); |
| 181 | }; |
| 182 |
nothing calls this directly
no test coverage detected