mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-07-29 20:29:18 +00:00
LibJS: Split more native object constructors into construct/initialize
This commit is contained in:
parent
9610d18ebb
commit
06e29fac57
Notes:
sideshowbarker
2024-07-19 05:31:40 +09:00
Author: https://github.com/awesomekling
Commit: 06e29fac57
16 changed files with 64 additions and 33 deletions
|
@ -32,7 +32,8 @@ namespace JS {
|
|||
|
||||
class MathObject final : public Object {
|
||||
public:
|
||||
MathObject();
|
||||
explicit MathObject(GlobalObject&);
|
||||
virtual void initialize(Interpreter&, GlobalObject&) override;
|
||||
virtual ~MathObject() override;
|
||||
|
||||
private:
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue