Remove _async from method names since _sync are gone (#4128)

This commit is contained in:
Ryan Dahl 2020-02-25 14:42:00 -05:00 committed by GitHub
parent fe181e2b48
commit f47f3f9672
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
11 changed files with 81 additions and 90 deletions

View file

@ -7,7 +7,7 @@ use std::str;
pub struct JsCompiler {}
impl JsCompiler {
pub async fn compile_async(
pub async fn compile(
&self,
source_file: SourceFile,
) -> Result<CompiledModule, ErrBox> {