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

10 lines
652 B
Plaintext
Raw Normal View History

tests/cases/conformance/parser/ecmascript5/Accessors/parserAccessors7.ts(1,15): error TS1054: A 'get' accessor cannot have parameters.
tests/cases/conformance/parser/ecmascript5/Accessors/parserAccessors7.ts(1,15): error TS2378: A 'get' accessor must return a value or consist of a single 'throw' statement.
2014-07-13 01:04:16 +02:00
==== tests/cases/conformance/parser/ecmascript5/Accessors/parserAccessors7.ts (2 errors) ====
var v = { get foo(v: number) { } };
~~~
!!! error TS1054: A 'get' accessor cannot have parameters.
2014-07-13 01:04:16 +02:00
~~~
!!! error TS2378: A 'get' accessor must return a value or consist of a single 'throw' statement.