Skip to content

Commit 074f2b7

Browse files
committed
catch up
1 parent 5e57507 commit 074f2b7

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

tests/baselines/reference/superPropertyInConstructorBeforeSuperCall.js

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,8 +16,12 @@ class C2 extends B {
1616
}
1717

1818
//// [superPropertyInConstructorBeforeSuperCall.js]
19+
var __extendStatics = (this && this.__extendStatics) ||
20+
Object.setPrototypeOf ||
21+
({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
22+
function (d, b) { for (var p in b) if (b.hasOwnProperty(p)) d[p] = b[p]; };
1923
var __extends = (this && this.__extends) || function (d, b) {
20-
for (var p in b) if (b.hasOwnProperty(p)) d[p] = b[p];
24+
__extendStatics(d, b);
2125
function __() { this.constructor = d; }
2226
d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
2327
};

0 commit comments

Comments
 (0)