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

12 lines
707 B
Plaintext
Raw Normal View History

tests/cases/conformance/parser/ecmascript3/Accessors/parserES3Accessors1.ts(2,9): error TS1056: Accessors are only available when targeting ECMAScript 5 and higher.
tests/cases/conformance/parser/ecmascript3/Accessors/parserES3Accessors1.ts(2,9): 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/ecmascript3/Accessors/parserES3Accessors1.ts (2 errors) ====
class C {
get Foo() { }
~~~
!!! error TS1056: Accessors are only available when targeting ECMAScript 5 and higher.
2014-07-13 01:04:16 +02:00
~~~
!!! error TS2378: A 'get' accessor must return a value or consist of a single 'throw' statement.
2014-07-13 01:04:16 +02:00
}