summaryrefslogtreecommitdiff
path: root/src/node_code_cache.h
blob: d4775a2b65e0225eaac1df019e187ca0547fe0a2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
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_