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

115 lines
3.6 KiB
Plaintext

==== tests/cases/conformance/expressions/superCalls/errorSuperCalls.ts (20 errors) ====
//super call in class constructor with no base type
class NoBase {
constructor() {
super();
~~~~~
!!! 'super' can only be referenced in a derived class.
}
//super call in class member function with no base type
fn() {
super();
~~~~~
!!! 'super' can only be referenced in a derived class.
}
//super call in class accessor (get and set) with no base type
get foo() {
~~~
!!! Accessors are only available when targeting ECMAScript 5 and higher.
super();
~~~~~
!!! 'super' can only be referenced in a derived class.
return null;
}
set foo(v) {
~~~
!!! Accessors are only available when targeting ECMAScript 5 and higher.
super();
~~~~~
!!! 'super' can only be referenced in a derived class.
}
//super call in class member initializer with no base type
p = super();
~~~~~
!!! 'super' can only be referenced in a derived class.
//super call in static class member function with no base type
static fn() {
super();
~~~~~
!!! 'super' can only be referenced in a derived class.
}
//super call in static class member initializer with no base type
static k = super();
~~~~~
!!! 'super' can only be referenced in a derived class.
//super call in static class accessor (get and set) with no base type
static get q() {
~
!!! Accessors are only available when targeting ECMAScript 5 and higher.
super();
~~~~~
!!! 'super' can only be referenced in a derived class.
return null;
}
static set q(n) {
~
!!! Accessors are only available when targeting ECMAScript 5 and higher.
super();
~~~~~
!!! 'super' can only be referenced in a derived class.
}
}
class Base<T> { private n: T; }
class Derived<T> extends Base<T> {
//super call with type arguments
constructor() {
super<string>();
~
!!! 'super' must be followed by argument list or member access.
super();
}
}
class OtherBase {
private n: string;
}
class OtherDerived extends OtherBase {
//super call in class member initializer of derived type
t = super();
~~~~~
!!! Super calls are not permitted outside constructors or in nested functions inside constructors
fn() {
//super call in class member function of derived type
super();
~~~~~
!!! Super calls are not permitted outside constructors or in nested functions inside constructors
}
//super call in class accessor (get and set) of derived type
get foo() {
~~~
!!! Accessors are only available when targeting ECMAScript 5 and higher.
super();
~~~~~
!!! Super calls are not permitted outside constructors or in nested functions inside constructors
return null;
}
set foo(n) {
~~~
!!! Accessors are only available when targeting ECMAScript 5 and higher.
super();
~~~~~
!!! Super calls are not permitted outside constructors or in nested functions inside constructors
}
}