test(ngcc): fix incorrect test setup (#38959)
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
This commit is contained in:
parent
ed81588c79
commit
acfce0ba1b
|
@ -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…
Reference in New Issue