LibJS: Add String.raw

This commit is contained in:
Matthew Olsson 2020-05-06 17:49:48 -07:00 committed by Andreas Kling
commit ab652fa1ee
Notes: sideshowbarker 2024-07-19 06:54:08 +09:00
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&);
};
}