TypeScript/tests/cases/conformance/expressions/superCalls/errorSuperCalls.ts
2014-07-12 17:30:19 -07:00

73 lines
1.5 KiB
TypeScript

//super call in class constructor with no base type
class NoBase {
constructor() {
super();
}
//super call in class member function with no base type
fn() {
super();
}
//super call in class accessor (get and set) with no base type
get foo() {
super();
return null;
}
set foo(v) {
super();
}
//super call in class member initializer with no base type
p = super();
//super call in static class member function with no base type
static fn() {
super();
}
//super call in static class member initializer with no base type
static k = super();
//super call in static class accessor (get and set) with no base type
static get q() {
super();
return null;
}
static set q(n) {
super();
}
}
class Base<T> { private n: T; }
class Derived<T> extends Base<T> {
//super call with type arguments
constructor() {
super<string>();
super();
}
}
class OtherBase {
private n: string;
}
class OtherDerived extends OtherBase {
//super call in class member initializer of derived type
t = super();
fn() {
//super call in class member function of derived type
super();
}
//super call in class accessor (get and set) of derived type
get foo() {
super();
return null;
}
set foo(n) {
super();
}
}