Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add support of --harmony_arrow_functions V8 option #1718

Merged
merged 1 commit into from Jun 1, 2015
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
1 change: 1 addition & 0 deletions bin/_mocha
Expand Up @@ -88,6 +88,7 @@ program
.option('--harmony-proxies', 'enable harmony proxies')
.option('--harmony_shipping', 'enable all shipped harmony fetaures (iojs)')
.option('--harmony_arrow_functions', 'enable "harmony arrow functions" (iojs)')
.option('--harmony_rest_parameters', 'enable "harmony rest parameters" (iojs)')
.option('--harmony_proxies', 'enable "harmony proxies" (iojs)')
.option('--harmony_classes', 'enable "harmony classes" (iojs)')
.option('--inline-diffs', 'display actual/expected differences inline within each string')
Expand Down
1 change: 1 addition & 0 deletions bin/mocha
Expand Up @@ -41,6 +41,7 @@ process.argv.slice(2).forEach(function(arg){
case '--harmony-generators':
case '--harmony_shipping':
case '--harmony_arrow_functions':
case '--harmony_rest_parameters':
case '--harmony_proxies':
case '--harmony_classes':
case '--no-deprecation':
Expand Down