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

Unified Diff: src/flag-definitions.h

Issue 15943002: v8 typed arrays: add DataView type (Closed)
Patch Set: v8 typed arrays: add DataView type, v2 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 side-by-side diff with in-line comments
Download patch
Index: src/flag-definitions.h
diff --git a/src/flag-definitions.h b/src/flag-definitions.h
index 2023d6ebc97f561f4caf26edbeb9ccdda94f41a7..ad96a1dcd60c915bd3dbae6fe4a5885eb5597387 100644
--- a/src/flag-definitions.h
+++ b/src/flag-definitions.h
@@ -168,6 +168,10 @@ DEFINE_bool(harmony_typed_arrays, false,
"enable harmony typed arrays")
DEFINE_bool(harmony_array_buffer, false,
"enable harmony array buffer")
+DEFINE_bool(harmony_data_view, false,
+ "enable harmony data view")
+DEFINE_implication(harmony_data_view, harmony_array_buffer)
+DEFINE_implication(harmony_typed_arrays, harmony_data_view)
DEFINE_implication(harmony_typed_arrays, harmony_array_buffer)
DEFINE_bool(harmony_generators, false, "enable harmony generators")
DEFINE_bool(harmony, false, "enable all harmony features (except typeof)")

Powered by Google App Engine
This is Rietveld 408576698