1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58
|
tests/cases/conformance/classes/members/accessibility/privateClassPropertyAccessibleWithinClass.ts(5,17): error TS1056: Accessors are only available when targeting ECMAScript 5 and higher.
tests/cases/conformance/classes/members/accessibility/privateClassPropertyAccessibleWithinClass.ts(6,17): error TS1056: Accessors are only available when targeting ECMAScript 5 and higher.
tests/cases/conformance/classes/members/accessibility/privateClassPropertyAccessibleWithinClass.ts(10,24): error TS1056: Accessors are only available when targeting ECMAScript 5 and higher.
tests/cases/conformance/classes/members/accessibility/privateClassPropertyAccessibleWithinClass.ts(11,24): error TS1056: Accessors are only available when targeting ECMAScript 5 and higher.
tests/cases/conformance/classes/members/accessibility/privateClassPropertyAccessibleWithinClass.ts(19,17): error TS1056: Accessors are only available when targeting ECMAScript 5 and higher.
tests/cases/conformance/classes/members/accessibility/privateClassPropertyAccessibleWithinClass.ts(20,17): error TS1056: Accessors are only available when targeting ECMAScript 5 and higher.
tests/cases/conformance/classes/members/accessibility/privateClassPropertyAccessibleWithinClass.ts(24,24): error TS1056: Accessors are only available when targeting ECMAScript 5 and higher.
tests/cases/conformance/classes/members/accessibility/privateClassPropertyAccessibleWithinClass.ts(25,24): error TS1056: Accessors are only available when targeting ECMAScript 5 and higher.
==== tests/cases/conformance/classes/members/accessibility/privateClassPropertyAccessibleWithinClass.ts (8 errors) ====
// no errors
class C {
private x: string;
private get y() { return this.x; }
~
!!! error TS1056: Accessors are only available when targeting ECMAScript 5 and higher.
private set y(x) { this.y = this.x; }
~
!!! error TS1056: Accessors are only available when targeting ECMAScript 5 and higher.
private foo() { return this.foo; }
private static x: string;
private static get y() { return this.x; }
~
!!! error TS1056: Accessors are only available when targeting ECMAScript 5 and higher.
private static set y(x) { this.y = this.x; }
~
!!! error TS1056: Accessors are only available when targeting ECMAScript 5 and higher.
private static foo() { return this.foo; }
private static bar() { this.foo(); }
}
// added level of function nesting
class C2 {
private x: string;
private get y() { () => this.x; return null; }
~
!!! error TS1056: Accessors are only available when targeting ECMAScript 5 and higher.
private set y(x) { () => { this.y = this.x; } }
~
!!! error TS1056: Accessors are only available when targeting ECMAScript 5 and higher.
private foo() { () => this.foo; }
private static x: string;
private static get y() { () => this.x; return null; }
~
!!! error TS1056: Accessors are only available when targeting ECMAScript 5 and higher.
private static set y(x) {
~
!!! error TS1056: Accessors are only available when targeting ECMAScript 5 and higher.
() => { this.y = this.x; }
}
private static foo() { () => this.foo; }
private static bar() { () => this.foo(); }
}
|