From 964800fbf47015d33b6d48d756ee4335b6eba1b5 Mon Sep 17 00:00:00 2001 From: Paul Lancaster Date: Sun, 11 Oct 2020 11:29:22 +0100 Subject: [PATCH] Update boa/src/syntax/ast/node/declaration/async_function_decl/mod.rs Co-authored-by: Halid Odat --- boa/src/syntax/ast/node/declaration/async_function_decl/mod.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/boa/src/syntax/ast/node/declaration/async_function_decl/mod.rs b/boa/src/syntax/ast/node/declaration/async_function_decl/mod.rs index dd9c2f3968..91ee9edc50 100644 --- a/boa/src/syntax/ast/node/declaration/async_function_decl/mod.rs +++ b/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 { let _timer = BoaProfiler::global().start_event("AsyncFunctionDecl", "exec"); - // unimplemented!("Execute AsyncFunctionDecl"); + // TODO: Implement AsyncFunctionDecl Ok(Value::undefined()) } }