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

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

Issue 2541283002: [promises] Port ResolvePromise to TF (Closed)
Patch Set: fix nits Created 4 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 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 132 matching lines...) Expand 10 before | Expand all | Expand 10 after
143 V(source_url_string, "source_url") \ 143 V(source_url_string, "source_url") \
144 V(stack_string, "stack") \ 144 V(stack_string, "stack") \
145 V(stackTraceLimit_string, "stackTraceLimit") \ 145 V(stackTraceLimit_string, "stackTraceLimit") \
146 V(sticky_string, "sticky") \ 146 V(sticky_string, "sticky") \
147 V(strict_compare_ic_string, "===") \ 147 V(strict_compare_ic_string, "===") \
148 V(string_string, "string") \ 148 V(string_string, "string") \
149 V(String_string, "String") \ 149 V(String_string, "String") \
150 V(symbol_string, "symbol") \ 150 V(symbol_string, "symbol") \
151 V(Symbol_string, "Symbol") \ 151 V(Symbol_string, "Symbol") \
152 V(SyntaxError_string, "SyntaxError") \ 152 V(SyntaxError_string, "SyntaxError") \
153 V(then_string, "then") \
153 V(this_string, "this") \ 154 V(this_string, "this") \
154 V(throw_string, "throw") \ 155 V(throw_string, "throw") \
155 V(timed_out, "timed-out") \ 156 V(timed_out, "timed-out") \
156 V(timeZoneName_string, "timeZoneName") \ 157 V(timeZoneName_string, "timeZoneName") \
157 V(toJSON_string, "toJSON") \ 158 V(toJSON_string, "toJSON") \
158 V(toString_string, "toString") \ 159 V(toString_string, "toString") \
159 V(true_string, "true") \ 160 V(true_string, "true") \
160 V(TypeError_string, "TypeError") \ 161 V(TypeError_string, "TypeError") \
161 V(type_string, "type") \ 162 V(type_string, "type") \
162 V(CompileError_string, "CompileError") \ 163 V(CompileError_string, "CompileError") \
(...skipping 43 matching lines...) Expand 10 before | Expand all | Expand 10 after
206 V(nonexistent_symbol) \ 207 V(nonexistent_symbol) \
207 V(nonextensible_symbol) \ 208 V(nonextensible_symbol) \
208 V(normal_ic_symbol) \ 209 V(normal_ic_symbol) \
209 V(not_mapped_symbol) \ 210 V(not_mapped_symbol) \
210 V(premonomorphic_symbol) \ 211 V(premonomorphic_symbol) \
211 V(promise_async_stack_id_symbol) \ 212 V(promise_async_stack_id_symbol) \
212 V(promise_debug_marker_symbol) \ 213 V(promise_debug_marker_symbol) \
213 V(promise_forwarding_handler_symbol) \ 214 V(promise_forwarding_handler_symbol) \
214 V(promise_handled_by_symbol) \ 215 V(promise_handled_by_symbol) \
215 V(promise_handled_hint_symbol) \ 216 V(promise_handled_hint_symbol) \
216 V(promise_has_handler_symbol) \
217 V(sealed_symbol) \ 217 V(sealed_symbol) \
218 V(stack_trace_symbol) \ 218 V(stack_trace_symbol) \
219 V(strict_function_transition_symbol) \ 219 V(strict_function_transition_symbol) \
220 V(uninitialized_symbol) 220 V(uninitialized_symbol)
221 221
222 #define PUBLIC_SYMBOL_LIST(V) \ 222 #define PUBLIC_SYMBOL_LIST(V) \
223 V(iterator_symbol, Symbol.iterator) \ 223 V(iterator_symbol, Symbol.iterator) \
224 V(match_symbol, Symbol.match) \ 224 V(match_symbol, Symbol.match) \
225 V(replace_symbol, Symbol.replace) \ 225 V(replace_symbol, Symbol.replace) \
226 V(search_symbol, Symbol.search) \ 226 V(search_symbol, Symbol.search) \
227 V(species_symbol, Symbol.species) \ 227 V(species_symbol, Symbol.species) \
228 V(split_symbol, Symbol.split) \ 228 V(split_symbol, Symbol.split) \
229 V(to_primitive_symbol, Symbol.toPrimitive) \ 229 V(to_primitive_symbol, Symbol.toPrimitive) \
230 V(unscopables_symbol, Symbol.unscopables) 230 V(unscopables_symbol, Symbol.unscopables)
231 231
232 // Well-Known Symbols are "Public" symbols, which have a bit set which causes 232 // Well-Known Symbols are "Public" symbols, which have a bit set which causes
233 // them to produce an undefined value when a load results in a failed access 233 // them to produce an undefined value when a load results in a failed access
234 // check. Because this behaviour is not specified properly as of yet, it only 234 // check. Because this behaviour is not specified properly as of yet, it only
235 // applies to a subset of spec-defined Well-Known Symbols. 235 // applies to a subset of spec-defined Well-Known Symbols.
236 #define WELL_KNOWN_SYMBOL_LIST(V) \ 236 #define WELL_KNOWN_SYMBOL_LIST(V) \
237 V(has_instance_symbol, Symbol.hasInstance) \ 237 V(has_instance_symbol, Symbol.hasInstance) \
238 V(is_concat_spreadable_symbol, Symbol.isConcatSpreadable) \ 238 V(is_concat_spreadable_symbol, Symbol.isConcatSpreadable) \
239 V(to_string_tag_symbol, Symbol.toStringTag) 239 V(to_string_tag_symbol, Symbol.toStringTag)
240 240
241 #endif // V8_HEAP_SYMBOLS_H_ 241 #endif // V8_HEAP_SYMBOLS_H_
OLDNEW
« no previous file with comments | « src/contexts.h ('k') | src/js/async-await.js » ('j') | src/js/promise.js » ('J')

Powered by Google App Engine
This is Rietveld 408576698