Skip to content

Commit 116bce3

Browse files
author
Kanchalai Tanglertsampan
committed
Add missing tests from portfix6901
1 parent 83c8c7d commit 116bce3

6 files changed

+82
-0
lines changed
Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
class A {
2+
blub = 6;
3+
}
4+
5+
6+
class B extends A {
7+
constructor(public x: number) {
8+
"use strict";
9+
'someStringForEgngInject';
10+
super()
11+
}
12+
}
Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
// @target: ES6
2+
class A {
3+
blub = 6;
4+
}
5+
6+
7+
class B extends A {
8+
constructor(public x: number) {
9+
"use strict";
10+
'someStringForEgngInject';
11+
super()
12+
}
13+
}
Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
class A {
2+
blub = 6;
3+
}
4+
5+
6+
class B extends A {
7+
8+
blub = 12;
9+
10+
constructor() {
11+
"use strict";
12+
'someStringForEgngInject';
13+
super()
14+
}
15+
}
Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
// @target: ES6
2+
class A {
3+
blub = 6;
4+
}
5+
6+
7+
class B extends A {
8+
9+
blub = 12;
10+
11+
constructor() {
12+
'someStringForEgngInject';
13+
super()
14+
}
15+
}
Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
class A {
2+
blub = 6;
3+
}
4+
5+
6+
class B extends A {
7+
blah = 2;
8+
constructor(public x: number) {
9+
"use strict";
10+
'someStringForEgngInject';
11+
super()
12+
}
13+
}
Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
// @target: ES6
2+
class A {
3+
blub = 6;
4+
}
5+
6+
7+
class B extends A {
8+
blah = 2;
9+
constructor(public x: number) {
10+
"use strict";
11+
'someStringForEgngInject';
12+
super()
13+
}
14+
}

0 commit comments

Comments
 (0)