TypeScript/tests/cases/compiler/superCallWithCommentEmit01.ts

10 lines
183 B
TypeScript
Raw Normal View History

2016-11-12 10:40:37 +01:00
class A {
constructor(public text: string) { }
}
class B extends A {
constructor(text: string) {
// this is subclass constructor
super(text)
}
}