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

16 lines
618 B
Plaintext
Raw Normal View History

tests/cases/compiler/typecheckIfCondition.ts(4,10): error TS2304: Cannot find name 'module'.
tests/cases/compiler/typecheckIfCondition.ts(4,26): error TS2304: Cannot find name 'module'.
2014-07-13 01:04:16 +02:00
==== tests/cases/compiler/typecheckIfCondition.ts (2 errors) ====
// both uses of module should be an undefined symbol
function myWrapper()
{
if (!module.exports) module.exports = "";
~~~~~~
!!! error TS2304: Cannot find name 'module'.
2014-07-13 01:04:16 +02:00
~~~~~~
!!! error TS2304: Cannot find name 'module'.
2014-07-13 01:04:16 +02:00
var x = null; // don't want to baseline output
}