OLD | NEW |
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 146 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
157 DEFINE_bool(harmony_scoping, false, "enable harmony block scoping") | 157 DEFINE_bool(harmony_scoping, false, "enable harmony block scoping") |
158 DEFINE_bool(harmony_modules, false, | 158 DEFINE_bool(harmony_modules, false, |
159 "enable harmony modules (implies block scoping)") | 159 "enable harmony modules (implies block scoping)") |
160 DEFINE_bool(harmony_symbols, false, | 160 DEFINE_bool(harmony_symbols, false, |
161 "enable harmony symbols (a.k.a. private names)") | 161 "enable harmony symbols (a.k.a. private names)") |
162 DEFINE_bool(harmony_proxies, false, "enable harmony proxies") | 162 DEFINE_bool(harmony_proxies, false, "enable harmony proxies") |
163 DEFINE_bool(harmony_collections, false, | 163 DEFINE_bool(harmony_collections, false, |
164 "enable harmony collections (sets, maps, and weak maps)") | 164 "enable harmony collections (sets, maps, and weak maps)") |
165 DEFINE_bool(harmony_observation, false, | 165 DEFINE_bool(harmony_observation, false, |
166 "enable harmony object observation (implies harmony collections") | 166 "enable harmony object observation (implies harmony collections") |
167 DEFINE_bool(harmony_typed_arrays, false, | 167 DEFINE_bool(harmony_typed_arrays, true, |
168 "enable harmony typed arrays") | 168 "enable harmony typed arrays") |
169 DEFINE_bool(harmony_array_buffer, false, | 169 DEFINE_bool(harmony_array_buffer, true, |
170 "enable harmony array buffer") | 170 "enable harmony array buffer") |
171 DEFINE_implication(harmony_typed_arrays, harmony_array_buffer) | 171 DEFINE_implication(harmony_typed_arrays, harmony_array_buffer) |
172 DEFINE_bool(harmony_generators, false, "enable harmony generators") | 172 DEFINE_bool(harmony_generators, false, "enable harmony generators") |
173 DEFINE_bool(harmony_iteration, false, "enable harmony iteration (for-of)") | 173 DEFINE_bool(harmony_iteration, false, "enable harmony iteration (for-of)") |
174 DEFINE_bool(harmony_numeric_literals, false, | 174 DEFINE_bool(harmony_numeric_literals, false, |
175 "enable harmony numeric literals (0o77, 0b11)") | 175 "enable harmony numeric literals (0o77, 0b11)") |
176 DEFINE_bool(harmony_strings, false, "enable harmony string") | 176 DEFINE_bool(harmony_strings, false, "enable harmony string") |
177 DEFINE_bool(harmony_arrays, false, "enable harmony arrays") | 177 DEFINE_bool(harmony_arrays, false, "enable harmony arrays") |
178 DEFINE_bool(harmony, false, "enable all harmony features (except typeof)") | 178 DEFINE_bool(harmony, false, "enable all harmony features (except typeof)") |
179 DEFINE_implication(harmony, harmony_scoping) | 179 DEFINE_implication(harmony, harmony_scoping) |
(...skipping 631 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
811 #undef DEFINE_bool | 811 #undef DEFINE_bool |
812 #undef DEFINE_int | 812 #undef DEFINE_int |
813 #undef DEFINE_string | 813 #undef DEFINE_string |
814 #undef DEFINE_implication | 814 #undef DEFINE_implication |
815 | 815 |
816 #undef FLAG_MODE_DECLARE | 816 #undef FLAG_MODE_DECLARE |
817 #undef FLAG_MODE_DEFINE | 817 #undef FLAG_MODE_DEFINE |
818 #undef FLAG_MODE_DEFINE_DEFAULTS | 818 #undef FLAG_MODE_DEFINE_DEFAULTS |
819 #undef FLAG_MODE_META | 819 #undef FLAG_MODE_META |
820 #undef FLAG_MODE_DEFINE_IMPLICATIONS | 820 #undef FLAG_MODE_DEFINE_IMPLICATIONS |
OLD | NEW |