mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-08-02 22:30:31 +00:00
LibGC+Everywhere: Factor out a LibGC from LibJS
Resulting in a massive rename across almost everywhere! Alongside the namespace change, we now have the following names: * JS::NonnullGCPtr -> GC::Ref * JS::GCPtr -> GC::Ptr * JS::HeapFunction -> GC::Function * JS::CellImpl -> GC::Cell * JS::Handle -> GC::Root
This commit is contained in:
parent
ce23efc5f6
commit
f87041bf3a
Notes:
github-actions[bot]
2024-11-15 13:50:17 +00:00
Author: https://github.com/shannonbooth
Commit: f87041bf3a
Pull-request: https://github.com/LadybirdBrowser/ladybird/pull/2345
1722 changed files with 9939 additions and 9906 deletions
|
@ -29,12 +29,12 @@ enum CompactTraceback {
|
|||
|
||||
class Error : public Object {
|
||||
JS_OBJECT(Error, Object);
|
||||
JS_DECLARE_ALLOCATOR(Error);
|
||||
GC_DECLARE_ALLOCATOR(Error);
|
||||
|
||||
public:
|
||||
static NonnullGCPtr<Error> create(Realm&);
|
||||
static NonnullGCPtr<Error> create(Realm&, String message);
|
||||
static NonnullGCPtr<Error> create(Realm&, StringView message);
|
||||
static GC::Ref<Error> create(Realm&);
|
||||
static GC::Ref<Error> create(Realm&, String message);
|
||||
static GC::Ref<Error> create(Realm&, StringView message);
|
||||
|
||||
virtual ~Error() override = default;
|
||||
|
||||
|
@ -58,12 +58,12 @@ private:
|
|||
#define DECLARE_NATIVE_ERROR(ClassName, snake_name, PrototypeName, ConstructorName) \
|
||||
class ClassName final : public Error { \
|
||||
JS_OBJECT(ClassName, Error); \
|
||||
JS_DECLARE_ALLOCATOR(ClassName); \
|
||||
GC_DECLARE_ALLOCATOR(ClassName); \
|
||||
\
|
||||
public: \
|
||||
static NonnullGCPtr<ClassName> create(Realm&); \
|
||||
static NonnullGCPtr<ClassName> create(Realm&, String message); \
|
||||
static NonnullGCPtr<ClassName> create(Realm&, StringView message); \
|
||||
static GC::Ref<ClassName> create(Realm&); \
|
||||
static GC::Ref<ClassName> create(Realm&, String message); \
|
||||
static GC::Ref<ClassName> create(Realm&, StringView message); \
|
||||
\
|
||||
explicit ClassName(Object& prototype); \
|
||||
virtual ~ClassName() override = default; \
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue