We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0e879c0 commit 486f156Copy full SHA for 486f156
1 file changed
tests/cases/compiler/superCallWithCommentEmit01.ts
@@ -0,0 +1,10 @@
1
+class A {
2
+ constructor(public text: string) { }
3
+}
4
+
5
+class B extends A {
6
+ constructor(text: string) {
7
+ // this is subclass constructor
8
+ super(text)
9
+ }
10
0 commit comments