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

LibJS: Implement Temporal.ZonedDateTime.compare

This commit is contained in:
Luke Wilde 2021-11-07 01:09:09 +00:00 committed by Idan Horowitz
parent c9ec3295d9
commit ac12581140
3 changed files with 31 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);
};
}