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

LibJS: Implement Temporal.Calendar.from()

This commit is contained in:
Linus Groh 2021-08-01 11:40:03 +01:00
parent a91848c148
commit dc80a258f6
3 changed files with 35 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);
};
}