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

LibJS: Implement Temporal.PlainTime.from()

This commit is contained in:
Idan Horowitz 2021-08-27 18:49:37 +03:00 committed by Linus Groh
parent bb857330d2
commit a77cdc5f92
3 changed files with 82 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);
};
}