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

Unified Diff: lib/runtime/harmony_feature_check.js

Issue 1235393004: Use standard harmony flag (Closed) Base URL: https://github.com/dart-lang/dev_compiler.git@master
Patch Set: Created 5 years, 5 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
« no previous file with comments | « karma.conf.js ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: lib/runtime/harmony_feature_check.js
diff --git a/lib/runtime/harmony_feature_check.js b/lib/runtime/harmony_feature_check.js
index 33003066a1adccae5b61aba04b37e7144633fb06..3ea0804d8ed31cc3398dacda227a71f9c1e40dc3 100644
--- a/lib/runtime/harmony_feature_check.js
+++ b/lib/runtime/harmony_feature_check.js
@@ -19,9 +19,7 @@
var message = 'This script needs EcmaScript 6 features ' +
'like `class` and `=>`. Please run in a browser with support, ' +
- 'for example: chrome --js-flags="--harmony-arrow-functions' +
- ' --harmony-classes --harmony-computed-property-names' +
- ' --harmony-spreadcalls"';
+ 'for example: chrome --js-flags="--harmony"';
console.error(message);
alert(message);
« no previous file with comments | « karma.conf.js ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698