mirror of
https://github.com/RGBCube/serenity
synced 2025-07-25 22:27:35 +00:00
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.
This commit is contained in:
parent
df095afbcc
commit
e5753443ae
18 changed files with 26 additions and 26 deletions
|
@ -10,7 +10,7 @@
|
|||
namespace JS {
|
||||
|
||||
BoundFunction::BoundFunction(GlobalObject& global_object, Function& target_function, Value bound_this, Vector<Value> arguments, i32 length, Object* constructor_prototype)
|
||||
: Function::Function(*global_object.function_prototype(), bound_this, move(arguments))
|
||||
: Function::Function(bound_this, move(arguments), *global_object.function_prototype())
|
||||
, m_target_function(&target_function)
|
||||
, m_constructor_prototype(constructor_prototype)
|
||||
, m_name(String::formatted("bound {}", target_function.name()))
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue