diff options
author | Bartek IwaĆczuk <biwanczuk@gmail.com> | 2020-09-26 16:33:25 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-09-26 16:33:25 +0200 |
commit | ff785bc35aa650152643ffc65a2195e2b27f845b (patch) | |
tree | 1a06106a4cb30049e5fb9928c51ab0fea4c21e3b /cli/ops/mod.rs | |
parent | e0d4696a7201301dfa23e108b6e73d016e3f5e63 (diff) |
refactor: use JsRuntime to implement TSC (#7691)
This commits removes "CompilerWorker" in favor of
using "JsRuntime".
"cli/ops/compiler.rs" has been removed in favor of inline
registration of ops in "cli/tsc.rs"
Diffstat (limited to 'cli/ops/mod.rs')
-rw-r--r-- | cli/ops/mod.rs | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/cli/ops/mod.rs b/cli/ops/mod.rs index ddc648be6..cbaa932aa 100644 --- a/cli/ops/mod.rs +++ b/cli/ops/mod.rs @@ -3,7 +3,6 @@ mod dispatch_minimal; pub use dispatch_minimal::MinimalOp; -pub mod compiler; pub mod errors; pub mod fetch; pub mod fs; |