TypeScript/tests/baselines/reference/sourceMapValidationForIn.errors.txt
2014-09-12 13:35:07 -07:00

29 lines
974 B
Plaintext

tests/cases/compiler/sourceMapValidationForIn.ts(2,5): error TS2304: Cannot find name 'WScript'.
tests/cases/compiler/sourceMapValidationForIn.ts(5,5): error TS2304: Cannot find name 'WScript'.
tests/cases/compiler/sourceMapValidationForIn.ts(9,5): error TS2304: Cannot find name 'WScript'.
tests/cases/compiler/sourceMapValidationForIn.ts(13,5): error TS2304: Cannot find name 'WScript'.
==== tests/cases/compiler/sourceMapValidationForIn.ts (4 errors) ====
for (var x in String) {
WScript.Echo(x);
~~~~~~~
!!! error TS2304: Cannot find name 'WScript'.
}
for (x in String) {
WScript.Echo(x);
~~~~~~~
!!! error TS2304: Cannot find name 'WScript'.
}
for (var x2 in String)
{
WScript.Echo(x2);
~~~~~~~
!!! error TS2304: Cannot find name 'WScript'.
}
for (x in String)
{
WScript.Echo(x);
~~~~~~~
!!! error TS2304: Cannot find name 'WScript'.
}