mirror of
				https://github.com/LadybirdBrowser/ladybird.git
				synced 2025-11-04 07:10:57 +00:00 
			
		
		
		
	Now that the GC allocator is able to invoke Cell subclass constructors directly via friendship, we no longer need to keep them public. :^)
		
			
				
	
	
		
			25 lines
		
	
	
	
		
			450 B
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			25 lines
		
	
	
	
		
			450 B
		
	
	
	
		
			C++
		
	
	
	
	
	
/*
 | 
						|
 * Copyright (c) 2021, Linus Groh <linusg@serenityos.org>
 | 
						|
 *
 | 
						|
 * SPDX-License-Identifier: BSD-2-Clause
 | 
						|
 */
 | 
						|
 | 
						|
#pragma once
 | 
						|
 | 
						|
#include <LibJS/Runtime/Error.h>
 | 
						|
#include <LibJS/Runtime/Object.h>
 | 
						|
 | 
						|
namespace JS {
 | 
						|
 | 
						|
class AggregateError : public Error {
 | 
						|
    JS_OBJECT(AggregateError, Error);
 | 
						|
 | 
						|
public:
 | 
						|
    static AggregateError* create(Realm&);
 | 
						|
    virtual ~AggregateError() override = default;
 | 
						|
 | 
						|
private:
 | 
						|
    explicit AggregateError(Object& prototype);
 | 
						|
};
 | 
						|
 | 
						|
}
 |