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

10 lines
674 B
Plaintext
Raw Normal View History

tests/cases/compiler/objectLiteralMemberWithModifiers2.ts(1,22): error TS1056: Accessors are only available when targeting ECMAScript 5 and higher.
2014-12-11 08:33:30 +01:00
tests/cases/compiler/objectLiteralMemberWithModifiers2.ts(1,22): error TS2378: A 'get' accessor must return a value or consist of a single 'throw' statement.
2014-12-11 08:33:30 +01:00
==== tests/cases/compiler/objectLiteralMemberWithModifiers2.ts (2 errors) ====
var v = { public get foo() { } }
~~~
!!! error TS1056: Accessors are only available when targeting ECMAScript 5 and higher.
2014-12-11 08:33:30 +01:00
~~~
!!! error TS2378: A 'get' accessor must return a value or consist of a single 'throw' statement.