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

LibJS: Add String.raw

This commit is contained in:
Matthew Olsson 2020-05-06 17:49:48 -07:00 committed by Andreas Kling
parent b5f1df57ed
commit ab652fa1ee
3 changed files with 67 additions and 1 deletions

View file

@ -41,6 +41,8 @@ public:
private:
virtual bool has_constructor() const override { return true; }
virtual const char* class_name() const override { return "StringConstructor"; }
static Value raw(Interpreter&);
};
}