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

Unified 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 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 859487a6f8d3f97b9187a18690f41d7c0ad55b25..c9f6b18bfba8d5decf8eda94e10ecdd06a11ca13 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