TypeScript/tests/baselines/reference/parserTernaryAndCommaOperators1.js
2014-07-12 17:30:19 -07:00

7 lines
137 B
TypeScript

//// [parserTernaryAndCommaOperators1.ts]
b.src ? 1 : 2, c && d;
//// [parserTernaryAndCommaOperators1.js]
b.src ? 1 : 2, c && d;