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

Side by Side Diff: src/heap/heap.h

Issue 1411083003: Debugger: correctly report uncaught rejections in Promise.all and Promise.race. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: move deferred from promise to handler Created 5 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
« no previous file with comments | « no previous file | src/js/promise.js » ('j') | src/js/promise.js » ('J')
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright 2012 the V8 project authors. All rights reserved. 1 // Copyright 2012 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_HEAP_HEAP_H_ 5 #ifndef V8_HEAP_HEAP_H_
6 #define V8_HEAP_HEAP_H_ 6 #define V8_HEAP_HEAP_H_
7 7
8 #include <cmath> 8 #include <cmath>
9 #include <map> 9 #include <map>
10 10
(...skipping 320 matching lines...) Expand 10 before | Expand all | Expand 10 after
331 V(home_object_symbol) \ 331 V(home_object_symbol) \
332 V(internal_error_symbol) \ 332 V(internal_error_symbol) \
333 V(intl_impl_object_symbol) \ 333 V(intl_impl_object_symbol) \
334 V(intl_initialized_marker_symbol) \ 334 V(intl_initialized_marker_symbol) \
335 V(megamorphic_symbol) \ 335 V(megamorphic_symbol) \
336 V(nonexistent_symbol) \ 336 V(nonexistent_symbol) \
337 V(nonextensible_symbol) \ 337 V(nonextensible_symbol) \
338 V(normal_ic_symbol) \ 338 V(normal_ic_symbol) \
339 V(observed_symbol) \ 339 V(observed_symbol) \
340 V(premonomorphic_symbol) \ 340 V(premonomorphic_symbol) \
341 V(promise_combined_deferred_symbol) \
341 V(promise_debug_marker_symbol) \ 342 V(promise_debug_marker_symbol) \
342 V(promise_has_handler_symbol) \ 343 V(promise_has_handler_symbol) \
343 V(promise_on_resolve_symbol) \ 344 V(promise_on_resolve_symbol) \
344 V(promise_on_reject_symbol) \ 345 V(promise_on_reject_symbol) \
345 V(promise_raw_symbol) \ 346 V(promise_raw_symbol) \
346 V(promise_status_symbol) \ 347 V(promise_status_symbol) \
347 V(promise_value_symbol) \ 348 V(promise_value_symbol) \
348 V(sealed_symbol) \ 349 V(sealed_symbol) \
349 V(stack_trace_symbol) \ 350 V(stack_trace_symbol) \
350 V(string_iterator_iterated_string_symbol) \ 351 V(string_iterator_iterated_string_symbol) \
(...skipping 2380 matching lines...) Expand 10 before | Expand all | Expand 10 after
2731 DisallowHeapAllocation no_allocation; // i.e. no gc allowed. 2732 DisallowHeapAllocation no_allocation; // i.e. no gc allowed.
2732 2733
2733 private: 2734 private:
2734 DISALLOW_IMPLICIT_CONSTRUCTORS(PathTracer); 2735 DISALLOW_IMPLICIT_CONSTRUCTORS(PathTracer);
2735 }; 2736 };
2736 #endif // DEBUG 2737 #endif // DEBUG
2737 } // namespace internal 2738 } // namespace internal
2738 } // namespace v8 2739 } // namespace v8
2739 2740
2740 #endif // V8_HEAP_HEAP_H_ 2741 #endif // V8_HEAP_HEAP_H_
OLDNEW
« no previous file with comments | « no previous file | src/js/promise.js » ('j') | src/js/promise.js » ('J')

Powered by Google App Engine
This is Rietveld 408576698