mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-09-10 19:46:03 +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
Notes:
sideshowbarker
2024-07-18 11:59:27 +09:00
Author: https://github.com/linusg
Commit: e5753443ae
Pull-request: https://github.com/SerenityOS/serenity/pull/8161
Reviewed-by: https://github.com/mattco98
18 changed files with 26 additions and 26 deletions
|
@ -18,7 +18,7 @@ class DataView : public Object {
|
|||
public:
|
||||
static DataView* create(GlobalObject&, ArrayBuffer*, size_t byte_length, size_t byte_offset);
|
||||
|
||||
explicit DataView(Object& prototype, ArrayBuffer*, size_t byte_length, size_t byte_offset);
|
||||
explicit DataView(ArrayBuffer*, size_t byte_length, size_t byte_offset, Object& prototype);
|
||||
virtual ~DataView() override;
|
||||
|
||||
ArrayBuffer* viewed_array_buffer() const { return m_viewed_array_buffer; }
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue