TypeScript/tests/baselines/reference/accessorsNotAllowedInES3.errors.txt
2014-07-12 17:30:19 -07:00

11 lines
370 B
Plaintext

==== tests/cases/compiler/accessorsNotAllowedInES3.ts (2 errors) ====
class C {
get x(): number { return 1; }
~
!!! Accessors are only available when targeting ECMAScript 5 and higher.
}
var y = { get foo() { return 3; } };
~~~
!!! Accessors are only available when targeting ECMAScript 5 and higher.