1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-26 20:57:44 +00:00

LibJS: Implement Temporal.PlainMonthDay.from

This commit is contained in:
Luke Wilde 2021-09-10 03:44:34 +01:00 committed by Linus Groh
parent d9d1e25db3
commit 2d5b15295a
3 changed files with 91 additions and 0 deletions

View file

@ -23,6 +23,8 @@ public:
private:
virtual bool has_constructor() const override { return true; }
JS_DECLARE_NATIVE_FUNCTION(from);
};
}