1 |
|
|
// This file is part of the embedder test, which is intentionally built without |
2 |
|
|
// NODE_WANT_INTERNALS, so we define it here manually. |
3 |
|
|
#define NODE_WANT_INTERNALS 1 |
4 |
|
|
|
5 |
|
|
#include "node_main_instance.h" |
6 |
|
|
|
7 |
|
|
namespace node { |
8 |
|
|
|
9 |
|
|
v8::StartupData* NodeMainInstance::GetEmbeddedSnapshotBlob() { |
10 |
|
|
return nullptr; |
11 |
|
|
} |
12 |
|
|
|
13 |
|
|
const std::vector<size_t>* NodeMainInstance::GetIsolateDataIndices() { |
14 |
|
|
return nullptr; |
15 |
|
|
} |
16 |
|
|
|
17 |
|
|
const EnvSerializeInfo* NodeMainInstance::GetEnvSerializeInfo() { |
18 |
|
|
return nullptr; |
19 |
|
|
} |
20 |
|
|
|
21 |
|
|
} // namespace node |