TypeScript/tests/baselines/reference/parserVariableDeclaration1.js

10 lines
207 B
JavaScript
Raw Normal View History

2014-07-13 01:04:16 +02:00
//// [parserVariableDeclaration1.ts]
var selection = a,
position = b,
model = c,
support = d;
//// [parserVariableDeclaration1.js]
var selection = a, position = b, model = c, support = d;