TypeScript/tests/baselines/reference/parserTernaryAndCommaOperators1.js

7 lines
137 B
TypeScript
Raw Normal View History

2014-07-13 01:04:16 +02:00
//// [parserTernaryAndCommaOperators1.ts]
b.src ? 1 : 2, c && d;
//// [parserTernaryAndCommaOperators1.js]
b.src ? 1 : 2, c && d;