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

40 lines
1.1 KiB
Plaintext

==== tests/cases/compiler/superPropertyAccess2.ts (6 errors) ====
class C {
public static foo() { }
public get x() {
~
!!! Accessors are only available when targeting ECMAScript 5 and higher.
return 1;
}
public static bar() { }
}
class D extends C {
public static foo() {
super.bar(); // OK
super.x; // error
~
!!! Property 'x' does not exist on type 'typeof C'.
}
constructor() {
super();
super.bar(); // error
~~~
!!! Property 'bar' does not exist on type 'C'.
super.x; // error
~
!!! Only public methods of the base class are accessible via the 'super' keyword
}
public static get y() {
~
!!! Accessors are only available when targeting ECMAScript 5 and higher.
super.bar(); // OK
super.x; // error
~
!!! Property 'x' does not exist on type 'typeof C'.
return 1;
}
}