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

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

Issue 2630233003: [regexp] Create property on result for each named capture (Closed)
Patch Set: Null proto and remove __proto__ blacklist Created 3 years, 11 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/builtins/builtins-regexp.cc ('k') | test/mjsunit/harmony/regexp-named-captures.js » ('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_function_string, "(anonymous function)") \ 9 V(anonymous_function_string, "(anonymous function)") \
10 V(anonymous_string, "anonymous") \ 10 V(anonymous_string, "anonymous") \
(...skipping 70 matching lines...) Expand 10 before | Expand all | Expand 10 after
81 V(Float32x4_string, "Float32x4") \ 81 V(Float32x4_string, "Float32x4") \
82 V(function_string, "function") \ 82 V(function_string, "function") \
83 V(Function_string, "Function") \ 83 V(Function_string, "Function") \
84 V(Generator_string, "Generator") \ 84 V(Generator_string, "Generator") \
85 V(getOwnPropertyDescriptor_string, "getOwnPropertyDescriptor") \ 85 V(getOwnPropertyDescriptor_string, "getOwnPropertyDescriptor") \
86 V(getOwnPropertyDescriptors_string, "getOwnPropertyDescriptors") \ 86 V(getOwnPropertyDescriptors_string, "getOwnPropertyDescriptors") \
87 V(getPrototypeOf_string, "getPrototypeOf") \ 87 V(getPrototypeOf_string, "getPrototypeOf") \
88 V(get_string, "get") \ 88 V(get_string, "get") \
89 V(get_space_string, "get ") \ 89 V(get_space_string, "get ") \
90 V(global_string, "global") \ 90 V(global_string, "global") \
91 V(group_string, "group") \
91 V(has_string, "has") \ 92 V(has_string, "has") \
92 V(hour_string, "hour") \ 93 V(hour_string, "hour") \
93 V(ignoreCase_string, "ignoreCase") \ 94 V(ignoreCase_string, "ignoreCase") \
94 V(illegal_access_string, "illegal access") \ 95 V(illegal_access_string, "illegal access") \
95 V(illegal_argument_string, "illegal argument") \ 96 V(illegal_argument_string, "illegal argument") \
96 V(index_string, "index") \ 97 V(index_string, "index") \
97 V(infinity_string, "Infinity") \ 98 V(infinity_string, "Infinity") \
98 V(input_string, "input") \ 99 V(input_string, "input") \
99 V(int16x8_string, "int16x8") \ 100 V(int16x8_string, "int16x8") \
100 V(Int16x8_string, "Int16x8") \ 101 V(Int16x8_string, "Int16x8") \
(...skipping 156 matching lines...) Expand 10 before | Expand all | Expand 10 after
257 // Well-Known Symbols are "Public" symbols, which have a bit set which causes 258 // Well-Known Symbols are "Public" symbols, which have a bit set which causes
258 // them to produce an undefined value when a load results in a failed access 259 // them to produce an undefined value when a load results in a failed access
259 // check. Because this behaviour is not specified properly as of yet, it only 260 // check. Because this behaviour is not specified properly as of yet, it only
260 // applies to a subset of spec-defined Well-Known Symbols. 261 // applies to a subset of spec-defined Well-Known Symbols.
261 #define WELL_KNOWN_SYMBOL_LIST(V) \ 262 #define WELL_KNOWN_SYMBOL_LIST(V) \
262 V(has_instance_symbol, Symbol.hasInstance) \ 263 V(has_instance_symbol, Symbol.hasInstance) \
263 V(is_concat_spreadable_symbol, Symbol.isConcatSpreadable) \ 264 V(is_concat_spreadable_symbol, Symbol.isConcatSpreadable) \
264 V(to_string_tag_symbol, Symbol.toStringTag) 265 V(to_string_tag_symbol, Symbol.toStringTag)
265 266
266 #endif // V8_HEAP_SYMBOLS_H_ 267 #endif // V8_HEAP_SYMBOLS_H_
OLDNEW
« no previous file with comments | « src/builtins/builtins-regexp.cc ('k') | test/mjsunit/harmony/regexp-named-captures.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698