LibJS: Implement the Error Cause proposal

Currently stage 3. https://github.com/tc39/proposal-error-cause
This commit is contained in:
Linus Groh 2021-06-11 20:40:08 +01:00
commit 862ba64037
Notes: sideshowbarker 2024-07-18 12:24:12 +09:00
11 changed files with 130 additions and 42 deletions

View file

@ -14,7 +14,7 @@ class AggregateError : public Object {
JS_OBJECT(Error, Object);
public:
static AggregateError* create(GlobalObject&, String const& message, Vector<Value> const& errors);
static AggregateError* create(GlobalObject&);
explicit AggregateError(Object& prototype);
virtual ~AggregateError() override = default;