| OLD | NEW |
| 1 // Copyright 2012 the V8 project authors. All rights reserved. | 1 // Copyright 2012 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 // This file defines all of the flags. It is separated into different section, | 5 // This file defines all of the flags. It is separated into different section, |
| 6 // for Debug, Release, Logging and Profiling, etc. To add a new flag, find the | 6 // for Debug, Release, Logging and Profiling, etc. To add a new flag, find the |
| 7 // correct section, and use one of the DEFINE_ macros, without a trailing ';'. | 7 // correct section, and use one of the DEFINE_ macros, without a trailing ';'. |
| 8 // | 8 // |
| 9 // This include does not have a guard, because it is a template-style include, | 9 // This include does not have a guard, because it is a template-style include, |
| 10 // which can be included multiple times in different modes. It expects to have | 10 // which can be included multiple times in different modes. It expects to have |
| (...skipping 190 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 201 V(harmony_sharedarraybuffer, "harmony sharedarraybuffer") \ | 201 V(harmony_sharedarraybuffer, "harmony sharedarraybuffer") \ |
| 202 V(harmony_do_expressions, "harmony do-expressions") \ | 202 V(harmony_do_expressions, "harmony do-expressions") \ |
| 203 V(harmony_regexp_named_captures, "harmony regexp named captures") \ | 203 V(harmony_regexp_named_captures, "harmony regexp named captures") \ |
| 204 V(harmony_regexp_property, "harmony unicode regexp property classes") \ | 204 V(harmony_regexp_property, "harmony unicode regexp property classes") \ |
| 205 V(harmony_function_tostring, "harmony Function.prototype.toString") \ | 205 V(harmony_function_tostring, "harmony Function.prototype.toString") \ |
| 206 V(harmony_class_fields, "harmony public fields in class literals") \ | 206 V(harmony_class_fields, "harmony public fields in class literals") \ |
| 207 V(harmony_async_iteration, "harmony async iteration") \ | 207 V(harmony_async_iteration, "harmony async iteration") \ |
| 208 V(harmony_dynamic_import, "harmony dynamic import") | 208 V(harmony_dynamic_import, "harmony dynamic import") |
| 209 | 209 |
| 210 // Features that are complete (but still behind --harmony/es-staging flag). | 210 // Features that are complete (but still behind --harmony/es-staging flag). |
| 211 #define HARMONY_STAGED(V) \ | 211 #define HARMONY_STAGED(V) \ |
| 212 V(harmony_regexp_lookbehind, "harmony regexp lookbehind") \ | 212 V(harmony_regexp_lookbehind, "harmony regexp lookbehind") \ |
| 213 V(harmony_restrictive_generators, \ | 213 V(harmony_restrictive_generators, \ |
| 214 "harmony restrictions on generator declarations") \ | 214 "harmony restrictions on generator declarations") \ |
| 215 V(harmony_object_rest_spread, "harmony object rest spread properties") | 215 V(harmony_object_rest_spread, "harmony object rest spread properties") \ |
| 216 V(harmony_template_escapes, \ |
| 217 "harmony invalid escapes in tagged template literals") |
| 216 | 218 |
| 217 // Features that are shipping (turned on by default, but internal flag remains). | 219 // Features that are shipping (turned on by default, but internal flag remains). |
| 218 #define HARMONY_SHIPPING_BASE(V) \ | 220 #define HARMONY_SHIPPING_BASE(V) \ |
| 219 V(harmony_trailing_commas, \ | 221 V(harmony_trailing_commas, \ |
| 220 "harmony trailing commas in function parameter lists") | 222 "harmony trailing commas in function parameter lists") |
| 221 | 223 |
| 222 #ifdef V8_I18N_SUPPORT | 224 #ifdef V8_I18N_SUPPORT |
| 223 #define HARMONY_SHIPPING(V) \ | 225 #define HARMONY_SHIPPING(V) \ |
| 224 HARMONY_SHIPPING_BASE(V) \ | 226 HARMONY_SHIPPING_BASE(V) \ |
| 225 V(datetime_format_to_parts, "Intl.DateTimeFormat.formatToParts") \ | 227 V(datetime_format_to_parts, "Intl.DateTimeFormat.formatToParts") \ |
| (...skipping 1069 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1295 #undef DEFINE_ALIAS_FLOAT | 1297 #undef DEFINE_ALIAS_FLOAT |
| 1296 #undef DEFINE_ALIAS_ARGS | 1298 #undef DEFINE_ALIAS_ARGS |
| 1297 | 1299 |
| 1298 #undef FLAG_MODE_DECLARE | 1300 #undef FLAG_MODE_DECLARE |
| 1299 #undef FLAG_MODE_DEFINE | 1301 #undef FLAG_MODE_DEFINE |
| 1300 #undef FLAG_MODE_DEFINE_DEFAULTS | 1302 #undef FLAG_MODE_DEFINE_DEFAULTS |
| 1301 #undef FLAG_MODE_META | 1303 #undef FLAG_MODE_META |
| 1302 #undef FLAG_MODE_DEFINE_IMPLICATIONS | 1304 #undef FLAG_MODE_DEFINE_IMPLICATIONS |
| 1303 | 1305 |
| 1304 #undef COMMA | 1306 #undef COMMA |
| OLD | NEW |