diff options
author | Bartek IwaĆczuk <biwanczuk@gmail.com> | 2020-02-21 10:35:41 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-02-21 10:35:41 -0500 |
commit | d9efb8c02a0036d755c35e8e9c88d58bd45a9e2b (patch) | |
tree | 2ebce022c1c8b286cfb31845f145d8249f7b395e /cli/compilers | |
parent | 6dd964384509e71598d08ae09c59f5f2c035a135 (diff) |
fix: add io ops to worker to fix fetch (#4054)
Diffstat (limited to 'cli/compilers')
-rw-r--r-- | cli/compilers/compiler_worker.rs | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/cli/compilers/compiler_worker.rs b/cli/compilers/compiler_worker.rs index f0489e641..37dda67ab 100644 --- a/cli/compilers/compiler_worker.rs +++ b/cli/compilers/compiler_worker.rs @@ -38,9 +38,7 @@ impl CompilerWorker { // TODO(bartlomieju): CompilerWorker should not // depend on those ops ops::os::init(isolate, &state); - ops::files::init(isolate, &state); ops::fs::init(isolate, &state); - ops::io::init(isolate, &state); } Self(worker) } |