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

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

Issue 1909433003: Remove support for Object.observe (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Rebased Created 4 years, 8 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 | « src/flag-definitions.h ('k') | src/heap/heap.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 2015 the V8 project authors. All rights reserved. 1 // Copyright 2015 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_SYMBOLS_H_ 5 #ifndef V8_HEAP_SYMBOLS_H_
6 #define V8_HEAP_SYMBOLS_H_ 6 #define V8_HEAP_SYMBOLS_H_
7 7
8 #define INTERNALIZED_STRING_LIST(V) \ 8 #define INTERNALIZED_STRING_LIST(V) \
9 V(anonymous_string, "anonymous") \ 9 V(anonymous_string, "anonymous") \
10 V(apply_string, "apply") \ 10 V(apply_string, "apply") \
(...skipping 144 matching lines...) Expand 10 before | Expand all | Expand 10 after
155 V(intl_impl_object_symbol) \ 155 V(intl_impl_object_symbol) \
156 V(intl_initialized_marker_symbol) \ 156 V(intl_initialized_marker_symbol) \
157 V(intl_pattern_symbol) \ 157 V(intl_pattern_symbol) \
158 V(intl_resolved_symbol) \ 158 V(intl_resolved_symbol) \
159 V(megamorphic_symbol) \ 159 V(megamorphic_symbol) \
160 V(native_context_index_symbol) \ 160 V(native_context_index_symbol) \
161 V(nonexistent_symbol) \ 161 V(nonexistent_symbol) \
162 V(nonextensible_symbol) \ 162 V(nonextensible_symbol) \
163 V(normal_ic_symbol) \ 163 V(normal_ic_symbol) \
164 V(not_mapped_symbol) \ 164 V(not_mapped_symbol) \
165 V(observed_symbol) \
166 V(premonomorphic_symbol) \ 165 V(premonomorphic_symbol) \
167 V(promise_combined_deferred_symbol) \ 166 V(promise_combined_deferred_symbol) \
168 V(promise_debug_marker_symbol) \ 167 V(promise_debug_marker_symbol) \
169 V(promise_has_handler_symbol) \ 168 V(promise_has_handler_symbol) \
170 V(promise_on_resolve_symbol) \ 169 V(promise_on_resolve_symbol) \
171 V(promise_on_reject_symbol) \ 170 V(promise_on_reject_symbol) \
172 V(promise_raw_symbol) \ 171 V(promise_raw_symbol) \
173 V(promise_status_symbol) \ 172 V(promise_status_symbol) \
174 V(promise_value_symbol) \ 173 V(promise_value_symbol) \
175 V(sealed_symbol) \ 174 V(sealed_symbol) \
(...skipping 16 matching lines...) Expand all
192 // Well-Known Symbols are "Public" symbols, which have a bit set which causes 191 // Well-Known Symbols are "Public" symbols, which have a bit set which causes
193 // them to produce an undefined value when a load results in a failed access 192 // them to produce an undefined value when a load results in a failed access
194 // check. Because this behaviour is not specified properly as of yet, it only 193 // check. Because this behaviour is not specified properly as of yet, it only
195 // applies to a subset of spec-defined Well-Known Symbols. 194 // applies to a subset of spec-defined Well-Known Symbols.
196 #define WELL_KNOWN_SYMBOL_LIST(V) \ 195 #define WELL_KNOWN_SYMBOL_LIST(V) \
197 V(has_instance_symbol, Symbol.hasInstance) \ 196 V(has_instance_symbol, Symbol.hasInstance) \
198 V(is_concat_spreadable_symbol, Symbol.isConcatSpreadable) \ 197 V(is_concat_spreadable_symbol, Symbol.isConcatSpreadable) \
199 V(to_string_tag_symbol, Symbol.toStringTag) 198 V(to_string_tag_symbol, Symbol.toStringTag)
200 199
201 #endif // V8_HEAP_SYMBOLS_H_ 200 #endif // V8_HEAP_SYMBOLS_H_
OLDNEW
« no previous file with comments | « src/flag-definitions.h ('k') | src/heap/heap.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698