blob: 4fffa8e0c29557106ec59cbe11cb02a9590c69a9 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
#include "node_native_module.h"
// This is supposed to be generated by tools/generate_code_cache.js
// The stub here is used when configure is run without `--code-cache-path`
namespace node {
namespace native_module {
// The generated source code would insert <std::string, UnionString> pairs
// into native_module_loader.code_cache_.
void NativeModuleLoader::LoadCodeCache() {}
} // namespace native_module
} // namespace node
|