summaryrefslogtreecommitdiff
path: root/src/node_code_cache.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/node_code_cache.h')
-rw-r--r--src/node_code_cache.h16
1 files changed, 16 insertions, 0 deletions
diff --git a/src/node_code_cache.h b/src/node_code_cache.h
new file mode 100644
index 0000000000..d4775a2b65
--- /dev/null
+++ b/src/node_code_cache.h
@@ -0,0 +1,16 @@
+#ifndef SRC_NODE_CODE_CACHE_H_
+#define SRC_NODE_CODE_CACHE_H_
+
+#if defined(NODE_WANT_INTERNALS) && NODE_WANT_INTERNALS
+
+#include "node_internals.h"
+
+namespace node {
+
+void DefineCodeCache(Environment* env, v8::Local<v8::Object> target);
+
+} // namespace node
+
+#endif // defined(NODE_WANT_INTERNALS) && NODE_WANT_INTERNALS
+
+#endif // SRC_NODE_CODE_CACHE_H_