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

26 lines
716 B
Plaintext
Raw Normal View History

2014-07-13 01:04:16 +02:00
==== tests/cases/compiler/inheritanceMemberAccessorOverridingAccessor.ts (4 errors) ====
class a {
get x() {
~
!!! Accessors are only available when targeting ECMAScript 5 and higher.
return "20";
}
set x(aValue: string) {
~
!!! Accessors are only available when targeting ECMAScript 5 and higher.
}
}
class b extends a {
get x() {
~
!!! Accessors are only available when targeting ECMAScript 5 and higher.
return "20";
}
set x(aValue: string) {
~
!!! Accessors are only available when targeting ECMAScript 5 and higher.
}
}