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

Side by Side Diff: src/flag-definitions.h

Issue 259883002: ES6: Add support for Map and Set Iterator (Closed) Base URL: http://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: cleanup Created 6 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 | Annotate | Revision Log
« no previous file with comments | « src/collection-iterator.js ('k') | src/macros.py » ('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 2012 the V8 project authors. All rights reserved. 1 // Copyright 2012 the V8 project authors. All rights reserved.
2 // Redistribution and use in source and binary forms, with or without 2 // Redistribution and use in source and binary forms, with or without
3 // modification, are permitted provided that the following conditions are 3 // modification, are permitted provided that the following conditions are
4 // met: 4 // met:
5 // 5 //
6 // * Redistributions of source code must retain the above copyright 6 // * Redistributions of source code must retain the above copyright
7 // notice, this list of conditions and the following disclaimer. 7 // notice, this list of conditions and the following disclaimer.
8 // * Redistributions in binary form must reproduce the above 8 // * Redistributions in binary form must reproduce the above
9 // copyright notice, this list of conditions and the following 9 // copyright notice, this list of conditions and the following
10 // disclaimer in the documentation and/or other materials provided 10 // disclaimer in the documentation and/or other materials provided
(...skipping 161 matching lines...) Expand 10 before | Expand all | Expand 10 after
172 DEFINE_bool(harmony_typeof, false, "enable harmony semantics for typeof") 172 DEFINE_bool(harmony_typeof, false, "enable harmony semantics for typeof")
173 DEFINE_bool(harmony_scoping, false, "enable harmony block scoping") 173 DEFINE_bool(harmony_scoping, false, "enable harmony block scoping")
174 DEFINE_bool(harmony_modules, false, 174 DEFINE_bool(harmony_modules, false,
175 "enable harmony modules (implies block scoping)") 175 "enable harmony modules (implies block scoping)")
176 DEFINE_bool(harmony_symbols, false, 176 DEFINE_bool(harmony_symbols, false,
177 "enable harmony symbols (a.k.a. private names)") 177 "enable harmony symbols (a.k.a. private names)")
178 DEFINE_bool(harmony_promises, false, "enable harmony promises") 178 DEFINE_bool(harmony_promises, false, "enable harmony promises")
179 DEFINE_bool(harmony_proxies, false, "enable harmony proxies") 179 DEFINE_bool(harmony_proxies, false, "enable harmony proxies")
180 DEFINE_bool(harmony_collections, false, 180 DEFINE_bool(harmony_collections, false,
181 "enable harmony collections (sets, maps, weak sets, weak maps)") 181 "enable harmony collections (sets, maps, weak sets, weak maps)")
182 DEFINE_bool(harmony_collection_iterators, false,
183 "enable harmony iterators for set and map")
182 DEFINE_bool(harmony_weak_collections, false, 184 DEFINE_bool(harmony_weak_collections, false,
183 "enable only harmony weak collections (weak sets and maps)") 185 "enable only harmony weak collections (weak sets and maps)")
184 DEFINE_bool(harmony_generators, false, "enable harmony generators") 186 DEFINE_bool(harmony_generators, false, "enable harmony generators")
185 DEFINE_bool(harmony_iteration, false, "enable harmony iteration (for-of)") 187 DEFINE_bool(harmony_iteration, false, "enable harmony iteration (for-of)")
186 DEFINE_bool(harmony_numeric_literals, false, 188 DEFINE_bool(harmony_numeric_literals, false,
187 "enable harmony numeric literals (0o77, 0b11)") 189 "enable harmony numeric literals (0o77, 0b11)")
188 DEFINE_bool(harmony_strings, false, "enable harmony string") 190 DEFINE_bool(harmony_strings, false, "enable harmony string")
189 DEFINE_bool(harmony_arrays, false, "enable harmony arrays") 191 DEFINE_bool(harmony_arrays, false, "enable harmony arrays")
190 DEFINE_bool(harmony_maths, false, "enable harmony math functions") 192 DEFINE_bool(harmony_maths, false, "enable harmony math functions")
191 DEFINE_bool(harmony, false, "enable all harmony features (except typeof)") 193 DEFINE_bool(harmony, false, "enable all harmony features (except typeof)")
192 194
193 DEFINE_implication(harmony, harmony_scoping) 195 DEFINE_implication(harmony, harmony_scoping)
194 DEFINE_implication(harmony, harmony_modules) 196 DEFINE_implication(harmony, harmony_modules)
195 DEFINE_implication(harmony, harmony_symbols) 197 DEFINE_implication(harmony, harmony_symbols)
196 DEFINE_implication(harmony, harmony_proxies) 198 DEFINE_implication(harmony, harmony_proxies)
197 DEFINE_implication(harmony, harmony_collections) 199 DEFINE_implication(harmony, harmony_collections)
198 DEFINE_implication(harmony, harmony_generators) 200 DEFINE_implication(harmony, harmony_generators)
199 DEFINE_implication(harmony, harmony_iteration) 201 DEFINE_implication(harmony, harmony_iteration)
200 DEFINE_implication(harmony, harmony_numeric_literals) 202 DEFINE_implication(harmony, harmony_numeric_literals)
201 DEFINE_implication(harmony, harmony_strings) 203 DEFINE_implication(harmony, harmony_strings)
202 DEFINE_implication(harmony, harmony_arrays) 204 DEFINE_implication(harmony, harmony_arrays)
205 DEFINE_implication(harmony, harmony_collection_iterators)
203 DEFINE_implication(harmony_collections, harmony_weak_collections) 206 DEFINE_implication(harmony_collections, harmony_weak_collections)
204 DEFINE_implication(harmony_promises, harmony_weak_collections) 207 DEFINE_implication(harmony_promises, harmony_weak_collections)
205 DEFINE_implication(harmony_modules, harmony_scoping) 208 DEFINE_implication(harmony_modules, harmony_scoping)
209 DEFINE_implication(harmony_collection_iterators, harmony_collections)
206 210
207 DEFINE_implication(harmony, es_staging) 211 DEFINE_implication(harmony, es_staging)
208 DEFINE_implication(es_staging, harmony_maths) 212 DEFINE_implication(es_staging, harmony_maths)
209 DEFINE_implication(es_staging, harmony_promises) 213 DEFINE_implication(es_staging, harmony_promises)
210 DEFINE_implication(es_staging, harmony_weak_collections) 214 DEFINE_implication(es_staging, harmony_weak_collections)
211 215
212 // Flags for experimental implementation features. 216 // Flags for experimental implementation features.
213 DEFINE_bool(packed_arrays, true, "optimizes arrays that have no holes") 217 DEFINE_bool(packed_arrays, true, "optimizes arrays that have no holes")
214 DEFINE_bool(smi_only_arrays, true, "tracks arrays with only smi values") 218 DEFINE_bool(smi_only_arrays, true, "tracks arrays with only smi values")
215 DEFINE_bool(compiled_keyed_dictionary_loads, true, 219 DEFINE_bool(compiled_keyed_dictionary_loads, true,
(...skipping 715 matching lines...) Expand 10 before | Expand all | Expand 10 after
931 #undef DEFINE_ALIAS_float 935 #undef DEFINE_ALIAS_float
932 #undef DEFINE_ALIAS_args 936 #undef DEFINE_ALIAS_args
933 937
934 #undef FLAG_MODE_DECLARE 938 #undef FLAG_MODE_DECLARE
935 #undef FLAG_MODE_DEFINE 939 #undef FLAG_MODE_DEFINE
936 #undef FLAG_MODE_DEFINE_DEFAULTS 940 #undef FLAG_MODE_DEFINE_DEFAULTS
937 #undef FLAG_MODE_META 941 #undef FLAG_MODE_META
938 #undef FLAG_MODE_DEFINE_IMPLICATIONS 942 #undef FLAG_MODE_DEFINE_IMPLICATIONS
939 943
940 #undef COMMA 944 #undef COMMA
OLDNEW
« no previous file with comments | « src/collection-iterator.js ('k') | src/macros.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698