TypeScript/tests/baselines/reference/parserES3Accessors1.errors.txt
2014-09-11 16:11:08 -07:00

8 lines
361 B
Plaintext

==== tests/cases/conformance/parser/ecmascript3/Accessors/parserES3Accessors1.ts (2 errors) ====
class C {
get Foo() { }
~~~
!!! error TS1056: Accessors are only available when targeting ECMAScript 5 and higher.
~~~
!!! error TS2378: A 'get' accessor must return a value or consist of a single 'throw' statement.
}