diff options
author | Linus Groh <mail@linusgroh.de> | 2021-06-19 23:21:08 +0100 |
---|---|---|
committer | Andreas Kling <kling@serenityos.org> | 2021-06-20 12:12:39 +0200 |
commit | e5753443ae8331c874c1516807f8a361c628d858 (patch) | |
tree | 142f0d23af42538e57aed28b386bedbde666ca92 /Userland/Libraries/LibJS/Runtime/ScriptFunction.cpp | |
parent | df095afbcca06d550d2034393f421981b4bf0b47 (diff) | |
download | serenity-e5753443ae8331c874c1516807f8a361c628d858.zip |
LibJS: Consistently make prototype the last argument in Object ctors
This is so that we can reliably allocate them in a template function,
e.g. in ordinary_create_from_constructor():
global_object.heap().allocate<T>(
global_object, forward<Args>(args)..., *prototype);
The majority of objects already take the prototype as the last argument,
so I updated the ones that didn't.
Diffstat (limited to 'Userland/Libraries/LibJS/Runtime/ScriptFunction.cpp')
-rw-r--r-- | Userland/Libraries/LibJS/Runtime/ScriptFunction.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Userland/Libraries/LibJS/Runtime/ScriptFunction.cpp b/Userland/Libraries/LibJS/Runtime/ScriptFunction.cpp index 6bcb0dfe0d..cfa0cdd5f7 100644 --- a/Userland/Libraries/LibJS/Runtime/ScriptFunction.cpp +++ b/Userland/Libraries/LibJS/Runtime/ScriptFunction.cpp @@ -50,7 +50,7 @@ ScriptFunction* ScriptFunction::create(GlobalObject& global_object, const FlyStr } ScriptFunction::ScriptFunction(GlobalObject& global_object, const FlyString& name, const Statement& body, Vector<FunctionNode::Parameter> parameters, i32 m_function_length, ScopeObject* parent_scope, Object& prototype, FunctionKind kind, bool is_strict, bool is_arrow_function) - : Function(prototype, is_arrow_function ? vm().this_value(global_object) : Value(), {}) + : Function(is_arrow_function ? vm().this_value(global_object) : Value(), {}, prototype) , m_name(name) , m_body(body) , m_parameters(move(parameters)) |