TypeScript/tests/baselines/reference/withStatements.js

14 lines
176 B
TypeScript
Raw Normal View History

2014-07-13 01:04:16 +02:00
//// [withStatements.ts]
var x = 12;
with (x) {
name = 'twelve'
id = 12
}
//// [withStatements.js]
var x = 12;
with (x) {
name = 'twelve';
id = 12;
}