TypeScript/tests/baselines/reference/scannerAdditiveExpression1.js

6 lines
130 B
TypeScript
Raw Normal View History

2014-07-13 01:04:16 +02:00
//// [scannerAdditiveExpression1.ts]
m.index+1+m[0].length;
//// [scannerAdditiveExpression1.js]
m.index + 1 + m[0].length;