| 17 | var jsDir embed.FS |
| 18 | |
| 19 | type VM struct { |
| 20 | o *otto.Otto |
| 21 | vms map[*otto.Otto]*VM |
| 22 | vmsMu *sync.RWMutex |
| 23 | |
| 24 | disposables map[any]struct{} |
| 25 | } |
| 26 | |
| 27 | func NewVM() (*VM, error) { |
| 28 | ovm := otto.New() |
nothing calls this directly
no outgoing calls
no test coverage detected