summaryrefslogtreecommitdiffstats
path: root/V8Binding/v8/src/stub-cache.h
diff options
context:
space:
mode:
Diffstat (limited to 'V8Binding/v8/src/stub-cache.h')
-rw-r--r--V8Binding/v8/src/stub-cache.h11
1 files changed, 11 insertions, 0 deletions
diff --git a/V8Binding/v8/src/stub-cache.h b/V8Binding/v8/src/stub-cache.h
index 3b3caad..e268920 100644
--- a/V8Binding/v8/src/stub-cache.h
+++ b/V8Binding/v8/src/stub-cache.h
@@ -561,6 +561,17 @@ class CallStubCompiler: public StubCompiler {
};
+class ConstructStubCompiler: public StubCompiler {
+ public:
+ explicit ConstructStubCompiler() {}
+
+ Object* CompileConstructStub(SharedFunctionInfo* shared);
+
+ private:
+ Object* GetCode();
+};
+
+
} } // namespace v8::internal
#endif // V8_STUB_CACHE_H_