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

LibJS: Implement Temporal.PlainDate.compare

This commit is contained in:
Idan Horowitz 2021-07-26 17:00:42 +03:00 committed by Linus Groh
parent 2c6bd3a61b
commit 07485802c6
5 changed files with 67 additions and 0 deletions

View file

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