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 46057ce commit 7973d3dCopy full SHA for 7973d3d
src/node.h
@@ -224,6 +224,7 @@ namespace node {
224
class IsolateData;
225
class Environment;
226
class MultiIsolatePlatform;
227
+class InitializationResultImpl;
228
229
namespace ProcessFlags {
230
enum Flags : uint64_t {
@@ -293,6 +294,10 @@ class NODE_EXTERN InitializationResult {
293
294
// If kNoInitializeNodeV8Platform was not specified, the global Node.js
295
// platform instance.
296
virtual MultiIsolatePlatform* platform() const = 0;
297
+
298
+ private:
299
+ InitializationResult() = default;
300
+ friend class InitializationResultImpl;
301
};
302
303
// TODO(addaleax): Officially deprecate this and replace it with something
0 commit comments