Added test cases for babel-generator (#5934)

* edited .gitignore to ignore all package-lock.json files
This commit is contained in:
Naveen jain 2017-07-20 21:09:26 +05:30 committed by Henry Zhu
parent 8a98141b60
commit 245c78dcdc
4 changed files with 12 additions and 0 deletions

View File

@ -11,3 +11,4 @@ false;
0o70;
0X1F;
-0b1111011;
"use strict";

View File

@ -11,3 +11,4 @@ false;
0o70;
0X1F;
-0b1111011;
"use strict";

View File

@ -1,2 +1,4 @@
foo ||bar;
(x => x)|| bar;
(function a(x){return x;})|| 2;
0||(function(){return alpha;});

View File

@ -1,2 +1,10 @@
foo || bar;
(x => x) || bar;
(function a(x) {
return x;
}) || 2;
0 || function () {
return alpha;
};