You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
For decorated classes, that reference the class name in a static block, TypeScript 5.2 changed the JS emit from
let Foo = class Foo {
/**
* @ngInject
* @param {?} $state
*/
constructor(state) {}
};
to
var Foo_1;
let Foo = Foo_1 = class Foo {
/**
* @ngInject
* @param {?} $state
*/
constructor(state) {}
};
This broke the enclosing scope detection in the AngularPass. This CL fixes it.
PiperOrigin-RevId: 561273919
0 commit comments