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

LibJS: Implement Temporal.PlainDateTime.compare()

This commit is contained in:
Idan Horowitz 2021-08-27 16:42:21 +03:00 committed by Linus Groh
parent 28fa4d1568
commit 9ed877e8e7
3 changed files with 32 additions and 0 deletions

View file

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