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

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

Issue 1510753005: Fix Function subclassing. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Addressing comments Created 5 years 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 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 344 matching lines...) Expand 10 before | Expand all | Expand 10 after
355 V(promise_combined_deferred_symbol) \ 355 V(promise_combined_deferred_symbol) \
356 V(promise_debug_marker_symbol) \ 356 V(promise_debug_marker_symbol) \
357 V(promise_has_handler_symbol) \ 357 V(promise_has_handler_symbol) \
358 V(promise_on_resolve_symbol) \ 358 V(promise_on_resolve_symbol) \
359 V(promise_on_reject_symbol) \ 359 V(promise_on_reject_symbol) \
360 V(promise_raw_symbol) \ 360 V(promise_raw_symbol) \
361 V(promise_status_symbol) \ 361 V(promise_status_symbol) \
362 V(promise_value_symbol) \ 362 V(promise_value_symbol) \
363 V(sealed_symbol) \ 363 V(sealed_symbol) \
364 V(stack_trace_symbol) \ 364 V(stack_trace_symbol) \
365 V(strict_function_transition_symbol) \
365 V(string_iterator_iterated_string_symbol) \ 366 V(string_iterator_iterated_string_symbol) \
366 V(string_iterator_next_index_symbol) \ 367 V(string_iterator_next_index_symbol) \
368 V(strong_function_transition_symbol) \
367 V(uninitialized_symbol) 369 V(uninitialized_symbol)
368 370
369 #define PUBLIC_SYMBOL_LIST(V) \ 371 #define PUBLIC_SYMBOL_LIST(V) \
370 V(has_instance_symbol, Symbol.hasInstance) \ 372 V(has_instance_symbol, Symbol.hasInstance) \
371 V(iterator_symbol, Symbol.iterator) \ 373 V(iterator_symbol, Symbol.iterator) \
372 V(match_symbol, Symbol.match) \ 374 V(match_symbol, Symbol.match) \
373 V(replace_symbol, Symbol.replace) \ 375 V(replace_symbol, Symbol.replace) \
374 V(search_symbol, Symbol.search) \ 376 V(search_symbol, Symbol.search) \
375 V(split_symbol, Symbol.split) \ 377 V(split_symbol, Symbol.split) \
376 V(to_primitive_symbol, Symbol.toPrimitive) \ 378 V(to_primitive_symbol, Symbol.toPrimitive) \
(...skipping 2354 matching lines...) Expand 10 before | Expand all | Expand 10 after
2731 DisallowHeapAllocation no_allocation; // i.e. no gc allowed. 2733 DisallowHeapAllocation no_allocation; // i.e. no gc allowed.
2732 2734
2733 private: 2735 private:
2734 DISALLOW_IMPLICIT_CONSTRUCTORS(PathTracer); 2736 DISALLOW_IMPLICIT_CONSTRUCTORS(PathTracer);
2735 }; 2737 };
2736 #endif // DEBUG 2738 #endif // DEBUG
2737 } // namespace internal 2739 } // namespace internal
2738 } // namespace v8 2740 } // namespace v8
2739 2741
2740 #endif // V8_HEAP_HEAP_H_ 2742 #endif // V8_HEAP_HEAP_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698