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

LibJS: Implement Temporal.ZonedDateTime.from

This commit is contained in:
Luke Wilde 2021-11-07 00:51:10 +00:00 committed by Idan Horowitz
parent 2b89d2a360
commit c9ec3295d9
3 changed files with 186 additions and 0 deletions

View file

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