Welcome to mirror list, hosted at ThFree Co, Russian Federation.

node_snapshot_stub.cc « src - github.com/nodejs/node.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 91bc37121d61fe9c2bf28aba9e4fcca4d05dce7b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
#include "node_main_instance.h"

namespace node {

v8::StartupData* NodeMainInstance::GetEmbeddedSnapshotBlob() {
  return nullptr;
}

const std::vector<size_t>* NodeMainInstance::GetIsolateDataIndexes() {
  return nullptr;
}

}  // namespace node