v8
10.1.124 (node 18.2.0)
V8 is Google's open source JavaScript engine
|
#include <garbage-collected.h>
Public Types | |
using | IsGarbageCollectedMixinTypeMarker = void |
Public Member Functions | |
virtual void | Trace (cppgc::Visitor *) const |
Base class for managed mixin objects. Such objects cannot be constructed directly but must be mixed into the inheritance hierarchy of a GarbageCollected object.
Types inheriting from GarbageCollectedMixin must override a virtual method of signature void Trace(cppgc::Visitor*) const
that dispatchs all managed pointers to the visitor and delegates to base classes.
Definition at line 93 of file garbage-collected.h.
using IsGarbageCollectedMixinTypeMarker = void |
Definition at line 95 of file garbage-collected.h.
|
inlinevirtual |
This Trace method must be overriden by objects inheriting from GarbageCollectedMixin.
Definition at line 101 of file garbage-collected.h.