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

13 lines
673 B
Plaintext
Raw Normal View History

tests/cases/conformance/parser/ecmascript5/parserNoASIOnCallAfterFunctionExpression1.ts(1,9): error TS2346: Supplied parameters do not match any signature of call target.
tests/cases/conformance/parser/ecmascript5/parserNoASIOnCallAfterFunctionExpression1.ts(2,7): error TS2304: Cannot find name 'window'.
2014-07-13 01:04:16 +02:00
==== tests/cases/conformance/parser/ecmascript5/parserNoASIOnCallAfterFunctionExpression1.ts (2 errors) ====
var x = function () { }
~~~~~~~~~~~~~~~
(<any>window).foo;
~~~~~~~~~~~~~
!!! error TS2346: Supplied parameters do not match any signature of call target.
2014-07-13 01:04:16 +02:00
~~~~~~
!!! error TS2304: Cannot find name 'window'.
2014-07-13 01:04:16 +02:00