TypeScript/tests/baselines/reference/sourceMapValidationForIn.errors.txt

29 lines
974 B
Plaintext
Raw Normal View History

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'.
2014-07-13 01:04:16 +02:00
==== tests/cases/compiler/sourceMapValidationForIn.ts (4 errors) ====
for (var x in String) {
WScript.Echo(x);
~~~~~~~
!!! error TS2304: Cannot find name 'WScript'.
2014-07-13 01:04:16 +02:00
}
for (x in String) {
WScript.Echo(x);
~~~~~~~
!!! error TS2304: Cannot find name 'WScript'.
2014-07-13 01:04:16 +02:00
}
for (var x2 in String)
{
WScript.Echo(x2);
~~~~~~~
!!! error TS2304: Cannot find name 'WScript'.
2014-07-13 01:04:16 +02:00
}
for (x in String)
{
WScript.Echo(x);
~~~~~~~
!!! error TS2304: Cannot find name 'WScript'.
2014-07-13 01:04:16 +02:00
}