TypeScript/tests/baselines/reference/parserAmbiguityWithBinaryOperator3.js

14 lines
241 B
JavaScript
Raw Normal View History

2014-12-09 00:38:35 +01:00
//// [parserAmbiguityWithBinaryOperator3.ts]
function f() {
var a, b, c;
if (a < b && b < (c + 1)) { }
}
//// [parserAmbiguityWithBinaryOperator3.js]
function f() {
var a, b, c;
if (a < b && b < (c + 1)) {
}
}