Browse Source

Update boa/src/syntax/ast/node/declaration/async_function_decl/mod.rs

Co-authored-by: Halid Odat <halidodat@gmail.com>
pull/836/head
Paul Lancaster 4 years ago committed by GitHub
parent
commit
964800fbf4
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 2
      boa/src/syntax/ast/node/declaration/async_function_decl/mod.rs

2
boa/src/syntax/ast/node/declaration/async_function_decl/mod.rs

@ -83,7 +83,7 @@ impl AsyncFunctionDecl {
impl Executable for AsyncFunctionDecl {
fn run(&self, _: &mut Context) -> Result<Value> {
let _timer = BoaProfiler::global().start_event("AsyncFunctionDecl", "exec");
// unimplemented!("Execute AsyncFunctionDecl");
// TODO: Implement AsyncFunctionDecl
Ok(Value::undefined())
}
}

Loading…
Cancel
Save