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

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

Issue 1408003012: Remove unused RegExp private symbols. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Created 5 years, 1 month 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 | no next file » | 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 327 matching lines...) Expand 10 before | Expand all | Expand 10 after
338 V(observed_symbol) \ 338 V(observed_symbol) \
339 V(premonomorphic_symbol) \ 339 V(premonomorphic_symbol) \
340 V(promise_combined_deferred_symbol) \ 340 V(promise_combined_deferred_symbol) \
341 V(promise_debug_marker_symbol) \ 341 V(promise_debug_marker_symbol) \
342 V(promise_has_handler_symbol) \ 342 V(promise_has_handler_symbol) \
343 V(promise_on_resolve_symbol) \ 343 V(promise_on_resolve_symbol) \
344 V(promise_on_reject_symbol) \ 344 V(promise_on_reject_symbol) \
345 V(promise_raw_symbol) \ 345 V(promise_raw_symbol) \
346 V(promise_status_symbol) \ 346 V(promise_status_symbol) \
347 V(promise_value_symbol) \ 347 V(promise_value_symbol) \
348 V(regexp_flags_symbol) \
349 V(regexp_source_symbol) \
350 V(sealed_symbol) \ 348 V(sealed_symbol) \
351 V(stack_trace_symbol) \ 349 V(stack_trace_symbol) \
352 V(string_iterator_iterated_string_symbol) \ 350 V(string_iterator_iterated_string_symbol) \
353 V(string_iterator_next_index_symbol) \ 351 V(string_iterator_next_index_symbol) \
354 V(uninitialized_symbol) 352 V(uninitialized_symbol)
355 353
356 #define PUBLIC_SYMBOL_LIST(V) \ 354 #define PUBLIC_SYMBOL_LIST(V) \
357 V(has_instance_symbol, Symbol.hasInstance) \ 355 V(has_instance_symbol, Symbol.hasInstance) \
358 V(iterator_symbol, Symbol.iterator) \ 356 V(iterator_symbol, Symbol.iterator) \
359 V(match_symbol, Symbol.match) \ 357 V(match_symbol, Symbol.match) \
(...skipping 2360 matching lines...) Expand 10 before | Expand all | Expand 10 after
2720 DisallowHeapAllocation no_allocation; // i.e. no gc allowed. 2718 DisallowHeapAllocation no_allocation; // i.e. no gc allowed.
2721 2719
2722 private: 2720 private:
2723 DISALLOW_IMPLICIT_CONSTRUCTORS(PathTracer); 2721 DISALLOW_IMPLICIT_CONSTRUCTORS(PathTracer);
2724 }; 2722 };
2725 #endif // DEBUG 2723 #endif // DEBUG
2726 } // namespace internal 2724 } // namespace internal
2727 } // namespace v8 2725 } // namespace v8
2728 2726
2729 #endif // V8_HEAP_HEAP_H_ 2727 #endif // V8_HEAP_HEAP_H_
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698