The `SIMPLE_CLASS_FILE` contained a `ChildClass` that had an internal aliases implementation and extended a `SuperClass` base class. The call to `__extends` was using the wrong argument for the child class. PR Close #38959 PR Close #39272
This commit is contained in:
parent
dfb129dbfa
commit
70e85d226c
@ -178,7 +178,7 @@ var OuterClass2 = (function() {
|
||||
}());
|
||||
var SuperClass = (function() { function SuperClass() {} return SuperClass; }());
|
||||
var ChildClass = /** @class */ (function (_super) {
|
||||
__extends(ChildClass, _super);
|
||||
__extends(InnerChildClass, _super);
|
||||
function InnerChildClass() {}
|
||||
return InnerChildClass;
|
||||
}(SuperClass);
|
||||
|
@ -223,7 +223,7 @@ runInEachFileSystem(() => {
|
||||
}());
|
||||
var SuperClass = (function() { function SuperClass() {} return SuperClass; }());
|
||||
var ChildClass = /** @class */ (function (_super) {
|
||||
__extends(ChildClass, _super);
|
||||
__extends(InnerChildClass, _super);
|
||||
function InnerChildClass() {}
|
||||
return InnerChildClass;
|
||||
}(SuperClass);
|
||||
|
Loading…
x
Reference in New Issue
Block a user