From 58dc45d496fd2c11757c4658631f00bc9189f3e6 Mon Sep 17 00:00:00 2001 From: probablycorey Date: Tue, 1 Apr 2014 15:31:55 -0700 Subject: [PATCH] Go full harmony! Using the --harmony flag gives us all of the harmony functionality and it didn't affect start time (~1360ms for both) or spec run time (~1:10 for both). --- src/browser/atom-application.coffee | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/browser/atom-application.coffee b/src/browser/atom-application.coffee index d209ffd41..f61675d80 100644 --- a/src/browser/atom-application.coffee +++ b/src/browser/atom-application.coffee @@ -125,7 +125,7 @@ class AtomApplication # Configures required javascript environment flags. setupJavaScriptArguments: -> - app.commandLine.appendSwitch 'js-flags', '--harmony_collections --harmony-proxies' + app.commandLine.appendSwitch 'js-flags', '--harmony' # Enable updates unless running from a local build of Atom. setupAutoUpdater: ->