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

LibJS: Implement Temporal.TimeZone.from()

This commit is contained in:
Linus Groh 2021-07-31 21:39:36 +01:00
parent 28b1e66b51
commit f987c11464
3 changed files with 29 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);
};
}