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

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: 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 | « no previous file | src/objects.h » ('j') | src/objects.cc » ('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 343 matching lines...) Expand 10 before | Expand all | Expand 10 after
354 V(premonomorphic_symbol) \ 354 V(premonomorphic_symbol) \
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(sloppy_function_symbol) \
364 V(stack_trace_symbol) \ 365 V(stack_trace_symbol) \
366 V(strict_function_symbol) \
365 V(string_iterator_iterated_string_symbol) \ 367 V(string_iterator_iterated_string_symbol) \
366 V(string_iterator_next_index_symbol) \ 368 V(string_iterator_next_index_symbol) \
369 V(strong_function_symbol) \
367 V(uninitialized_symbol) 370 V(uninitialized_symbol)
368 371
369 #define PUBLIC_SYMBOL_LIST(V) \ 372 #define PUBLIC_SYMBOL_LIST(V) \
370 V(has_instance_symbol, Symbol.hasInstance) \ 373 V(has_instance_symbol, Symbol.hasInstance) \
371 V(iterator_symbol, Symbol.iterator) \ 374 V(iterator_symbol, Symbol.iterator) \
372 V(match_symbol, Symbol.match) \ 375 V(match_symbol, Symbol.match) \
373 V(replace_symbol, Symbol.replace) \ 376 V(replace_symbol, Symbol.replace) \
374 V(search_symbol, Symbol.search) \ 377 V(search_symbol, Symbol.search) \
375 V(split_symbol, Symbol.split) \ 378 V(split_symbol, Symbol.split) \
376 V(to_primitive_symbol, Symbol.toPrimitive) \ 379 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. 2734 DisallowHeapAllocation no_allocation; // i.e. no gc allowed.
2732 2735
2733 private: 2736 private:
2734 DISALLOW_IMPLICIT_CONSTRUCTORS(PathTracer); 2737 DISALLOW_IMPLICIT_CONSTRUCTORS(PathTracer);
2735 }; 2738 };
2736 #endif // DEBUG 2739 #endif // DEBUG
2737 } // namespace internal 2740 } // namespace internal
2738 } // namespace v8 2741 } // namespace v8
2739 2742
2740 #endif // V8_HEAP_HEAP_H_ 2743 #endif // V8_HEAP_HEAP_H_
OLDNEW
« no previous file with comments | « no previous file | src/objects.h » ('j') | src/objects.cc » ('J')

Powered by Google App Engine
This is Rietveld 408576698