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

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

Issue 15943002: v8 typed arrays: add DataView type (Closed)
Patch Set: Created 7 years, 7 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
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 150 matching lines...) Expand 10 before | Expand all | Expand 10 after
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, false,
168 "enable harmony typed arrays") 168 "enable harmony typed arrays")
169 DEFINE_bool(harmony_array_buffer, false, 169 DEFINE_bool(harmony_array_buffer, false,
170 "enable harmony array buffer") 170 "enable harmony array buffer")
171 DEFINE_bool(harmony_data_view, false,
172 "enable harmony data view")
173 DEFINE_implication(harmony_data_view, harmony_array_buffer)
174 DEFINE_implication(harmony_typed_arrays, harmony_data_view)
171 DEFINE_implication(harmony_typed_arrays, harmony_array_buffer) 175 DEFINE_implication(harmony_typed_arrays, harmony_array_buffer)
172 DEFINE_bool(harmony_generators, false, "enable harmony generators") 176 DEFINE_bool(harmony_generators, false, "enable harmony generators")
173 DEFINE_bool(harmony, false, "enable all harmony features (except typeof)") 177 DEFINE_bool(harmony, false, "enable all harmony features (except typeof)")
174 DEFINE_implication(harmony, harmony_scoping) 178 DEFINE_implication(harmony, harmony_scoping)
175 DEFINE_implication(harmony, harmony_modules) 179 DEFINE_implication(harmony, harmony_modules)
176 DEFINE_implication(harmony, harmony_symbols) 180 DEFINE_implication(harmony, harmony_symbols)
177 DEFINE_implication(harmony, harmony_proxies) 181 DEFINE_implication(harmony, harmony_proxies)
178 DEFINE_implication(harmony, harmony_collections) 182 DEFINE_implication(harmony, harmony_collections)
179 DEFINE_implication(harmony, harmony_observation) 183 DEFINE_implication(harmony, harmony_observation)
180 DEFINE_implication(harmony, harmony_generators) 184 DEFINE_implication(harmony, harmony_generators)
(...skipping 606 matching lines...) Expand 10 before | Expand all | Expand 10 after
787 #undef DEFINE_bool 791 #undef DEFINE_bool
788 #undef DEFINE_int 792 #undef DEFINE_int
789 #undef DEFINE_string 793 #undef DEFINE_string
790 #undef DEFINE_implication 794 #undef DEFINE_implication
791 795
792 #undef FLAG_MODE_DECLARE 796 #undef FLAG_MODE_DECLARE
793 #undef FLAG_MODE_DEFINE 797 #undef FLAG_MODE_DEFINE
794 #undef FLAG_MODE_DEFINE_DEFAULTS 798 #undef FLAG_MODE_DEFINE_DEFAULTS
795 #undef FLAG_MODE_META 799 #undef FLAG_MODE_META
796 #undef FLAG_MODE_DEFINE_IMPLICATIONS 800 #undef FLAG_MODE_DEFINE_IMPLICATIONS
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698