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

8 lines
245 B
Plaintext
Raw Normal View History

2014-07-13 01:04:16 +02:00
==== tests/cases/compiler/recursiveGetterAccess.ts (1 errors) ====
class MyClass {
get testProp() { return this.testProp; }
~~~~~~~~
!!! Accessors are only available when targeting ECMAScript 5 and higher.
}