TypeScript/tests/cases/compiler/sourceMapValidationForIn.ts
2014-07-12 17:30:19 -07:00

15 lines
215 B
TypeScript

// @sourcemap: true
for (var x in String) {
WScript.Echo(x);
}
for (x in String) {
WScript.Echo(x);
}
for (var x2 in String)
{
WScript.Echo(x2);
}
for (x in String)
{
WScript.Echo(x);
}