OLD | NEW |
1 // Copyright 2014 the V8 project authors. All rights reserved. | 1 // Copyright 2014 the V8 project authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 #ifndef V8_FACTORY_H_ | 5 #ifndef V8_FACTORY_H_ |
6 #define V8_FACTORY_H_ | 6 #define V8_FACTORY_H_ |
7 | 7 |
8 #include "src/isolate.h" | 8 #include "src/isolate.h" |
9 #include "src/messages.h" | 9 #include "src/messages.h" |
10 #include "src/type-feedback-vector.h" | 10 #include "src/type-feedback-vector.h" |
(...skipping 43 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
54 | 54 |
55 Handle<FrameArray> NewFrameArray(int number_of_frames, | 55 Handle<FrameArray> NewFrameArray(int number_of_frames, |
56 PretenureFlag pretenure = NOT_TENURED); | 56 PretenureFlag pretenure = NOT_TENURED); |
57 | 57 |
58 Handle<OrderedHashSet> NewOrderedHashSet(); | 58 Handle<OrderedHashSet> NewOrderedHashSet(); |
59 Handle<OrderedHashMap> NewOrderedHashMap(); | 59 Handle<OrderedHashMap> NewOrderedHashMap(); |
60 | 60 |
61 // Create a new boxed value. | 61 // Create a new boxed value. |
62 Handle<Box> NewBox(Handle<Object> value); | 62 Handle<Box> NewBox(Handle<Object> value); |
63 | 63 |
| 64 // Create a new PromiseContainer struct. |
| 65 Handle<PromiseContainer> NewPromiseContainer(Handle<Object> promise, |
| 66 Handle<Object> thenable, |
| 67 Handle<JSFunction> then, |
| 68 Handle<JSFunction> resolve, |
| 69 Handle<JSFunction> reject); |
| 70 |
64 // Create a new PrototypeInfo struct. | 71 // Create a new PrototypeInfo struct. |
65 Handle<PrototypeInfo> NewPrototypeInfo(); | 72 Handle<PrototypeInfo> NewPrototypeInfo(); |
66 | 73 |
67 // Create a new SloppyBlockWithEvalContextExtension struct. | 74 // Create a new SloppyBlockWithEvalContextExtension struct. |
68 Handle<SloppyBlockWithEvalContextExtension> | 75 Handle<SloppyBlockWithEvalContextExtension> |
69 NewSloppyBlockWithEvalContextExtension(Handle<ScopeInfo> scope_info, | 76 NewSloppyBlockWithEvalContextExtension(Handle<ScopeInfo> scope_info, |
70 Handle<JSObject> extension); | 77 Handle<JSObject> extension); |
71 | 78 |
72 // Create a pre-tenured empty AccessorPair. | 79 // Create a pre-tenured empty AccessorPair. |
73 Handle<AccessorPair> NewAccessorPair(); | 80 Handle<AccessorPair> NewAccessorPair(); |
(...skipping 681 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
755 FunctionMode function_mode); | 762 FunctionMode function_mode); |
756 | 763 |
757 void SetStrictFunctionInstanceDescriptor(Handle<Map> map, | 764 void SetStrictFunctionInstanceDescriptor(Handle<Map> map, |
758 FunctionMode function_mode); | 765 FunctionMode function_mode); |
759 }; | 766 }; |
760 | 767 |
761 } // namespace internal | 768 } // namespace internal |
762 } // namespace v8 | 769 } // namespace v8 |
763 | 770 |
764 #endif // V8_FACTORY_H_ | 771 #endif // V8_FACTORY_H_ |
OLD | NEW |