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

LibJS: Implement Temporal.PlainTime.compare()

This commit is contained in:
Idan Horowitz 2021-08-27 18:52:51 +03:00 committed by Linus Groh
parent a77cdc5f92
commit 684e62476b
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);
};
}