diff options
author | Ryan Dahl <ry@tinyclouds.org> | 2020-02-25 14:42:00 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-02-25 20:42:00 +0100 |
commit | f47f3f96726a94dd2df5d68e3c786b5079089dd4 (patch) | |
tree | 1cad805473cc1b89d19d791f4f03011071d528eb /cli/compilers/mod.rs | |
parent | fe181e2b4850a83344f0aa5840fffe97c8cb8839 (diff) |
Remove _async from method names since _sync are gone (#4128)
Diffstat (limited to 'cli/compilers/mod.rs')
-rw-r--r-- | cli/compilers/mod.rs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/cli/compilers/mod.rs b/cli/compilers/mod.rs index f6fc28d37..e30c89173 100644 --- a/cli/compilers/mod.rs +++ b/cli/compilers/mod.rs @@ -11,8 +11,8 @@ mod wasm; pub use js::JsCompiler; pub use json::JsonCompiler; -pub use ts::runtime_compile_async; -pub use ts::runtime_transpile_async; +pub use ts::runtime_compile; +pub use ts::runtime_transpile; pub use ts::TargetLib; pub use ts::TsCompiler; pub use wasm::WasmCompiler; |