1 |
|
|
#include "node_native_module_env.h" |
2 |
|
|
|
3 |
|
|
// This is supposed to be generated by tools/generate_code_cache.js |
4 |
|
|
// The stub here is used when configure is run without `--code-cache-path` |
5 |
|
|
|
6 |
|
|
namespace node { |
7 |
|
|
namespace native_module { |
8 |
|
|
|
9 |
|
|
const bool has_code_cache = false; |
10 |
|
|
|
11 |
|
|
// The generated source code would insert <std::string, UnionString> pairs |
12 |
|
|
// into NativeModuleLoader::instance.code_cache_. |
13 |
|
1 |
void NativeModuleEnv::InitializeCodeCache() {} |
14 |
|
|
|
15 |
|
|
} // namespace native_module |
16 |
|
|
} // namespace node |