1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-27 19:07:34 +00:00

LibJS: Implement Temporal.PlainDate.from

This commit is contained in:
Idan Horowitz 2021-07-26 17:07:59 +03:00 committed by Linus Groh
parent 07485802c6
commit 67b3255fe8
3 changed files with 47 additions and 0 deletions

View file

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