Files
babel/packages/babel-generator/test/fixtures/parentheses/sequence-expressions/output.js
2018-01-09 15:36:42 +01:00

14 lines
149 B
JavaScript

function foo() {
return a, b;
}
if (a, b, c) d();
throw a, b, c;
switch (a, b, c) {}
for (a in b, c);
while (a, b, c);
!function () {}(), a();