Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(550)

Side by Side Diff: src/factory.h

Issue 2415023002: [promises] Move async debug event creation to c++ (Closed)
Patch Set: use consts Created 4 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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 45 matching lines...) Expand 10 before | Expand all | Expand 10 after
56 56
57 Handle<OrderedHashSet> NewOrderedHashSet(); 57 Handle<OrderedHashSet> NewOrderedHashSet();
58 Handle<OrderedHashMap> NewOrderedHashMap(); 58 Handle<OrderedHashMap> NewOrderedHashMap();
59 59
60 // Create a new boxed value. 60 // Create a new boxed value.
61 Handle<Box> NewBox(Handle<Object> value); 61 Handle<Box> NewBox(Handle<Object> value);
62 62
63 // Create a new PromiseReactionJobInfo struct. 63 // Create a new PromiseReactionJobInfo struct.
64 Handle<PromiseReactionJobInfo> NewPromiseReactionJobInfo( 64 Handle<PromiseReactionJobInfo> NewPromiseReactionJobInfo(
65 Handle<Object> value, Handle<Object> tasks, Handle<Object> deferred, 65 Handle<Object> value, Handle<Object> tasks, Handle<Object> deferred,
66 Handle<Object> before_debug, Handle<Object> after_debug_event, 66 Handle<Object> id, Handle<Object> name, Handle<Context> context);
67 Handle<Context> context);
68 67
69 // Create a new PromiseResolveThenableJobInfo struct. 68 // Create a new PromiseResolveThenableJobInfo struct.
70 Handle<PromiseResolveThenableJobInfo> NewPromiseResolveThenableJobInfo( 69 Handle<PromiseResolveThenableJobInfo> NewPromiseResolveThenableJobInfo(
71 Handle<JSReceiver> thenable, Handle<JSReceiver> then, 70 Handle<JSReceiver> thenable, Handle<JSReceiver> then,
72 Handle<JSFunction> resolve, Handle<JSFunction> reject, 71 Handle<JSFunction> resolve, Handle<JSFunction> reject, Handle<Object> id,
73 Handle<Object> before_debug_event, Handle<Object> after_debug_event); 72 Handle<Object> name);
74 73
75 // Create a new PrototypeInfo struct. 74 // Create a new PrototypeInfo struct.
76 Handle<PrototypeInfo> NewPrototypeInfo(); 75 Handle<PrototypeInfo> NewPrototypeInfo();
77 76
78 // Create a new ContextExtension struct. 77 // Create a new ContextExtension struct.
79 Handle<ContextExtension> NewContextExtension(Handle<ScopeInfo> scope_info, 78 Handle<ContextExtension> NewContextExtension(Handle<ScopeInfo> scope_info,
80 Handle<Object> extension); 79 Handle<Object> extension);
81 80
82 // Create a pre-tenured empty AccessorPair. 81 // Create a pre-tenured empty AccessorPair.
83 Handle<AccessorPair> NewAccessorPair(); 82 Handle<AccessorPair> NewAccessorPair();
(...skipping 695 matching lines...) Expand 10 before | Expand all | Expand 10 after
779 FunctionMode function_mode); 778 FunctionMode function_mode);
780 779
781 void SetStrictFunctionInstanceDescriptor(Handle<Map> map, 780 void SetStrictFunctionInstanceDescriptor(Handle<Map> map,
782 FunctionMode function_mode); 781 FunctionMode function_mode);
783 }; 782 };
784 783
785 } // namespace internal 784 } // namespace internal
786 } // namespace v8 785 } // namespace v8
787 786
788 #endif // V8_FACTORY_H_ 787 #endif // V8_FACTORY_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698