TypeScript/tests/cases/compiler/sourceMapValidationForIn.ts

15 lines
215 B
TypeScript
Raw Normal View History

2014-07-13 01:04:16 +02:00
// @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);
}