mirror of
https://github.com/zebrajr/node.git
synced 2026-01-15 12:15:26 +00:00
17 lines
360 B
C
17 lines
360 B
C
|
|
#ifndef TOOLS_CODE_CACHE_CACHE_BUILDER_H_
|
||
|
|
#define TOOLS_CODE_CACHE_CACHE_BUILDER_H_
|
||
|
|
|
||
|
|
#include <string>
|
||
|
|
#include "v8.h"
|
||
|
|
|
||
|
|
namespace node {
|
||
|
|
namespace native_module {
|
||
|
|
class CodeCacheBuilder {
|
||
|
|
public:
|
||
|
|
static std::string Generate(v8::Local<v8::Context> context);
|
||
|
|
};
|
||
|
|
} // namespace native_module
|
||
|
|
} // namespace node
|
||
|
|
|
||
|
|
#endif // TOOLS_CODE_CACHE_CACHE_BUILDER_H_
|