Merge branch 'master' of github.com:babel/babel

This commit is contained in:
Sebastian McKenzie
2015-04-12 20:59:26 -07:00
10 changed files with 129 additions and 2 deletions

View File

@@ -0,0 +1,4 @@
Math.max(1,
2,
3,
);

View File

@@ -0,0 +1,3 @@
"use strict";
Math.max(1, 2, 3);

View File

@@ -0,0 +1,8 @@
function thisIsAFunctionWithAVeryLongNameAndWayTooManyParameters(
thisIsTheFirstParameter, andThisOneIsRelatedToIt,
butNotThisOne,
andNeitherThis,
inFactThereArentThatManyParameters,
) {
throw null;
}

View File

@@ -0,0 +1,5 @@
"use strict";
function thisIsAFunctionWithAVeryLongNameAndWayTooManyParameters(thisIsTheFirstParameter, andThisOneIsRelatedToIt, butNotThisOne, andNeitherThis, inFactThereArentThatManyParameters) {
throw null;
}

View File

@@ -0,0 +1,3 @@
{
"optional": ["es7.trailingFunctionCommas"]
}