diff options
Diffstat (limited to 'cli/web_worker.rs')
-rw-r--r-- | cli/web_worker.rs | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/cli/web_worker.rs b/cli/web_worker.rs index 5c69f8e06..fe511d618 100644 --- a/cli/web_worker.rs +++ b/cli/web_worker.rs @@ -37,12 +37,10 @@ impl WebWorker { ops::web_worker::init(isolate, &state, &worker.internal_channels.sender); ops::worker_host::init(isolate, &state); ops::io::init(isolate, &state); + ops::resources::init(isolate, &state); ops::errors::init(isolate, &state); ops::timers::init(isolate, &state); ops::fetch::init(isolate, &state); - // FIXME(bartlomieju): this is added only to provide "close" - // op - it should be moved to `ops::io` - ops::files::init(isolate, &state); } Self { |