From 1832474a3784a047afdaef27c6d7e535fc22654d Mon Sep 17 00:00:00 2001 From: Linus Groh Date: Tue, 6 Dec 2022 23:46:47 +0000 Subject: [PATCH] LibJS: Remove forgotten VM::construct() declaration This has been a standalone AO function for a long time now. --- Userland/Libraries/LibJS/Runtime/VM.h | 2 -- 1 file changed, 2 deletions(-) diff --git a/Userland/Libraries/LibJS/Runtime/VM.h b/Userland/Libraries/LibJS/Runtime/VM.h index e666364ef3..21a0c40806 100644 --- a/Userland/Libraries/LibJS/Runtime/VM.h +++ b/Userland/Libraries/LibJS/Runtime/VM.h @@ -182,8 +182,6 @@ public: return throw_completion(DeprecatedString::formatted(type.message(), forward(args)...)); } - Value construct(FunctionObject&, FunctionObject& new_target, Optional> arguments); - Value get_new_target(); Object& get_global_object();