/* * Copyright (c) 2021, Linus Groh * * SPDX-License-Identifier: BSD-2-Clause */ #include #include #include namespace JS { AggregateError* AggregateError::create(GlobalObject& global_object) { return global_object.heap().allocate(global_object, *global_object.aggregate_error_prototype()); } AggregateError::AggregateError(Object& prototype) : Error(prototype) { } }