1 #ifndef TOOLS_CODE_CACHE_CACHE_BUILDER_H_ 2 #define TOOLS_CODE_CACHE_CACHE_BUILDER_H_ 3 4 #include <string> 5 #include "v8.h" 6 7 namespace node { 8 namespace native_module { 9 class CodeCacheBuilder { 10 public: 11 static std::string Generate(v8::Local<v8::Context> context); 12 }; 13 } // namespace native_module 14 } // namespace node 15 16 #endif // TOOLS_CODE_CACHE_CACHE_BUILDER_H_ 17