Added test cases for babel-generator (#5934)
* edited .gitignore to ignore all package-lock.json files
This commit is contained in:
parent
8a98141b60
commit
245c78dcdc
@ -11,3 +11,4 @@ false;
|
||||
0o70;
|
||||
0X1F;
|
||||
-0b1111011;
|
||||
"use strict";
|
||||
@ -11,3 +11,4 @@ false;
|
||||
0o70;
|
||||
0X1F;
|
||||
-0b1111011;
|
||||
"use strict";
|
||||
@ -1,2 +1,4 @@
|
||||
foo ||bar;
|
||||
(x => x)|| bar;
|
||||
(function a(x){return x;})|| 2;
|
||||
0||(function(){return alpha;});
|
||||
@ -1,2 +1,10 @@
|
||||
foo || bar;
|
||||
(x => x) || bar;
|
||||
|
||||
(function a(x) {
|
||||
return x;
|
||||
}) || 2;
|
||||
|
||||
0 || function () {
|
||||
return alpha;
|
||||
};
|
||||
Loading…
x
Reference in New Issue
Block a user