From ba9d5c4d54d2e58c14eafe1e8960c3832fac46c7 Mon Sep 17 00:00:00 2001 From: Andreas Kling Date: Sun, 27 Jun 2021 21:48:34 +0200 Subject: LibJS: Rename Function => FunctionObject --- Userland/Libraries/LibJS/Runtime/MapConstructor.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'Userland/Libraries/LibJS/Runtime/MapConstructor.cpp') diff --git a/Userland/Libraries/LibJS/Runtime/MapConstructor.cpp b/Userland/Libraries/LibJS/Runtime/MapConstructor.cpp index cea85d6d42..eceff0913f 100644 --- a/Userland/Libraries/LibJS/Runtime/MapConstructor.cpp +++ b/Userland/Libraries/LibJS/Runtime/MapConstructor.cpp @@ -44,7 +44,7 @@ Value MapConstructor::call() } // 24.1.1.1 Map ( [ iterable ] ), https://tc39.es/ecma262/#sec-map-iterable -Value MapConstructor::construct(Function& new_target) +Value MapConstructor::construct(FunctionObject& new_target) { auto& vm = this->vm(); auto& global_object = this->global_object(); -- cgit v1.2.3