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

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

Issue 2780173002: [regexp] Add support for dotAll flag (Closed)
Patch Set: Address comments Created 3 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/objects.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_function_string, "(anonymous function)") \ 9 V(anonymous_function_string, "(anonymous function)") \
10 V(anonymous_string, "anonymous") \ 10 V(anonymous_string, "anonymous") \
(...skipping 36 matching lines...) Expand 10 before | Expand all | Expand 10 after
47 V(create_string, "create") \ 47 V(create_string, "create") \
48 V(Date_string, "Date") \ 48 V(Date_string, "Date") \
49 V(dayperiod_string, "dayperiod") \ 49 V(dayperiod_string, "dayperiod") \
50 V(day_string, "day") \ 50 V(day_string, "day") \
51 V(default_string, "default") \ 51 V(default_string, "default") \
52 V(defineProperty_string, "defineProperty") \ 52 V(defineProperty_string, "defineProperty") \
53 V(deleteProperty_string, "deleteProperty") \ 53 V(deleteProperty_string, "deleteProperty") \
54 V(did_handle_string, "didHandle") \ 54 V(did_handle_string, "didHandle") \
55 V(display_name_string, "displayName") \ 55 V(display_name_string, "displayName") \
56 V(done_string, "done") \ 56 V(done_string, "done") \
57 V(dotAll_string, "dotAll") \
57 V(dot_catch_string, ".catch") \ 58 V(dot_catch_string, ".catch") \
58 V(dot_for_string, ".for") \ 59 V(dot_for_string, ".for") \
59 V(dot_generator_object_string, ".generator_object") \ 60 V(dot_generator_object_string, ".generator_object") \
60 V(dot_iterator_string, ".iterator") \ 61 V(dot_iterator_string, ".iterator") \
61 V(dot_result_string, ".result") \ 62 V(dot_result_string, ".result") \
62 V(dot_switch_tag_string, ".switch_tag") \ 63 V(dot_switch_tag_string, ".switch_tag") \
63 V(dot_string, ".") \ 64 V(dot_string, ".") \
64 V(exec_string, "exec") \ 65 V(exec_string, "exec") \
65 V(entries_string, "entries") \ 66 V(entries_string, "entries") \
66 V(enqueue_string, "enqueue") \ 67 V(enqueue_string, "enqueue") \
(...skipping 173 matching lines...) Expand 10 before | Expand all | Expand 10 after
240 // Well-Known Symbols are "Public" symbols, which have a bit set which causes 241 // Well-Known Symbols are "Public" symbols, which have a bit set which causes
241 // them to produce an undefined value when a load results in a failed access 242 // them to produce an undefined value when a load results in a failed access
242 // check. Because this behaviour is not specified properly as of yet, it only 243 // check. Because this behaviour is not specified properly as of yet, it only
243 // applies to a subset of spec-defined Well-Known Symbols. 244 // applies to a subset of spec-defined Well-Known Symbols.
244 #define WELL_KNOWN_SYMBOL_LIST(V) \ 245 #define WELL_KNOWN_SYMBOL_LIST(V) \
245 V(has_instance_symbol, Symbol.hasInstance) \ 246 V(has_instance_symbol, Symbol.hasInstance) \
246 V(is_concat_spreadable_symbol, Symbol.isConcatSpreadable) \ 247 V(is_concat_spreadable_symbol, Symbol.isConcatSpreadable) \
247 V(to_string_tag_symbol, Symbol.toStringTag) 248 V(to_string_tag_symbol, Symbol.toStringTag)
248 249
249 #endif // V8_HEAP_SYMBOLS_H_ 250 #endif // V8_HEAP_SYMBOLS_H_
OLDNEW
« no previous file with comments | « src/flag-definitions.h ('k') | src/objects.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698