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

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: Adressing 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
« no previous file with comments | « src/bootstrapper.cc ('k') | src/objects.h » ('j') | no next file with comments »
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 330 matching lines...) Expand 10 before | Expand all | Expand 10 after
341 V(error_script_symbol) \ 341 V(error_script_symbol) \
342 V(error_start_pos_symbol) \ 342 V(error_start_pos_symbol) \
343 V(formatted_stack_trace_symbol) \ 343 V(formatted_stack_trace_symbol) \
344 V(frozen_symbol) \ 344 V(frozen_symbol) \
345 V(hash_code_symbol) \ 345 V(hash_code_symbol) \
346 V(home_object_symbol) \ 346 V(home_object_symbol) \
347 V(internal_error_symbol) \ 347 V(internal_error_symbol) \
348 V(intl_impl_object_symbol) \ 348 V(intl_impl_object_symbol) \
349 V(intl_initialized_marker_symbol) \ 349 V(intl_initialized_marker_symbol) \
350 V(megamorphic_symbol) \ 350 V(megamorphic_symbol) \
351 V(native_context_index_symbol) \
351 V(nonexistent_symbol) \ 352 V(nonexistent_symbol) \
352 V(nonextensible_symbol) \ 353 V(nonextensible_symbol) \
353 V(normal_ic_symbol) \ 354 V(normal_ic_symbol) \
354 V(not_mapped_symbol) \ 355 V(not_mapped_symbol) \
355 V(observed_symbol) \ 356 V(observed_symbol) \
356 V(premonomorphic_symbol) \ 357 V(premonomorphic_symbol) \
357 V(promise_combined_deferred_symbol) \ 358 V(promise_combined_deferred_symbol) \
358 V(promise_debug_marker_symbol) \ 359 V(promise_debug_marker_symbol) \
359 V(promise_has_handler_symbol) \ 360 V(promise_has_handler_symbol) \
360 V(promise_on_resolve_symbol) \ 361 V(promise_on_resolve_symbol) \
361 V(promise_on_reject_symbol) \ 362 V(promise_on_reject_symbol) \
362 V(promise_raw_symbol) \ 363 V(promise_raw_symbol) \
363 V(promise_status_symbol) \ 364 V(promise_status_symbol) \
364 V(promise_value_symbol) \ 365 V(promise_value_symbol) \
365 V(sealed_symbol) \ 366 V(sealed_symbol) \
366 V(stack_trace_symbol) \ 367 V(stack_trace_symbol) \
368 V(strict_function_transition_symbol) \
367 V(string_iterator_iterated_string_symbol) \ 369 V(string_iterator_iterated_string_symbol) \
368 V(string_iterator_next_index_symbol) \ 370 V(string_iterator_next_index_symbol) \
369 V(uninitialized_symbol) \ 371 V(strong_function_transition_symbol) \
370 V(native_context_index_symbol) 372 V(uninitialized_symbol)
371 373
372 #define PUBLIC_SYMBOL_LIST(V) \ 374 #define PUBLIC_SYMBOL_LIST(V) \
373 V(has_instance_symbol, Symbol.hasInstance) \ 375 V(has_instance_symbol, Symbol.hasInstance) \
374 V(iterator_symbol, Symbol.iterator) \ 376 V(iterator_symbol, Symbol.iterator) \
375 V(match_symbol, Symbol.match) \ 377 V(match_symbol, Symbol.match) \
376 V(replace_symbol, Symbol.replace) \ 378 V(replace_symbol, Symbol.replace) \
377 V(search_symbol, Symbol.search) \ 379 V(search_symbol, Symbol.search) \
378 V(split_symbol, Symbol.split) \ 380 V(split_symbol, Symbol.split) \
379 V(to_primitive_symbol, Symbol.toPrimitive) \ 381 V(to_primitive_symbol, Symbol.toPrimitive) \
380 V(unscopables_symbol, Symbol.unscopables) 382 V(unscopables_symbol, Symbol.unscopables)
(...skipping 2356 matching lines...) Expand 10 before | Expand all | Expand 10 after
2737 DisallowHeapAllocation no_allocation; // i.e. no gc allowed. 2739 DisallowHeapAllocation no_allocation; // i.e. no gc allowed.
2738 2740
2739 private: 2741 private:
2740 DISALLOW_IMPLICIT_CONSTRUCTORS(PathTracer); 2742 DISALLOW_IMPLICIT_CONSTRUCTORS(PathTracer);
2741 }; 2743 };
2742 #endif // DEBUG 2744 #endif // DEBUG
2743 } // namespace internal 2745 } // namespace internal
2744 } // namespace v8 2746 } // namespace v8
2745 2747
2746 #endif // V8_HEAP_HEAP_H_ 2748 #endif // V8_HEAP_HEAP_H_
OLDNEW
« no previous file with comments | « src/bootstrapper.cc ('k') | src/objects.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698