We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fde9434 commit 63cc069Copy full SHA for 63cc069
βsrc/node_realm.h
@@ -157,7 +157,7 @@ class Realm : public MemoryRetainer {
157
CleanupQueue cleanup_queue_;
158
};
159
160
-class PrincipalRealm : public Realm {
+class PrincipalRealm final : public Realm {
161
public:
162
PrincipalRealm(Environment* env,
163
v8::Local<v8::Context> context,
βsrc/node_shadow_realm.h
@@ -9,7 +9,7 @@
9
namespace node {
10
namespace shadow_realm {
11
12
-class ShadowRealm : public Realm {
+class ShadowRealm final : public Realm {
13
14
static ShadowRealm* New(Environment* env);
15
0 commit comments