Index: src/builtins/builtins-constructor.h |
diff --git a/src/builtins/builtins-constructor.h b/src/builtins/builtins-constructor.h |
new file mode 100644 |
index 0000000000000000000000000000000000000000..3fddb54ceaceb50936f5e872f75abd826f4a98f8 |
--- /dev/null |
+++ b/src/builtins/builtins-constructor.h |
@@ -0,0 +1,22 @@ |
+// Copyright 2016 the V8 project authors. All rights reserved. |
+// Use of this source code is governed by a BSD-style license that can be |
+// found in the LICENSE file. |
+ |
+#include "src/code-stub-assembler.h" |
+ |
+namespace v8 { |
+namespace internal { |
+ |
+typedef compiler::Node Node; |
+typedef compiler::CodeAssemblerState CodeAssemblerState; |
+ |
+class ConstructorBuiltinsAssembler : public CodeStubAssembler { |
+ public: |
+ explicit ConstructorBuiltinsAssembler(CodeAssemblerState* state) |
+ : CodeStubAssembler(state) {} |
+ |
+ Node* EmitFastNewClosure(Node* shared_info, Node* context); |
+}; |
+ |
+} // namespace internal |
+} // namespace v8 |