-
Notifications
You must be signed in to change notification settings - Fork 27.4k
fix(angular-loader): do not depend on "closure" globals that may not be available #15881
Conversation
…d `minErr` This commit updates `loader.js` based on `angular-loader.js` from angular/angular.js#15881, which is essentially the latest loader plus some `minErr` fixes (see angular/angular.js#15881 for more info). Additionally, the loader does a better job staying closer to the original `angular-loader` behavior for versions 1.3+ and it only modifies its behavior to support 1.2 apps. This change also fixes previously broken usecases that rely on private `angular.Module` APIs (see angular#88 for more info). Fixes angular#88
…d `minErr` This commit updates `loader.js` based on `angular-loader.js` from angular/angular.js#15881, which is essentially the latest loader plus some `minErr` fixes (see angular/angular.js#15881 for more info). Additionally, the loader does a better job staying closer to the original `angular-loader` behavior for versions 1.3+ and it only modifies its behavior to support 1.2 apps. This change also fixes previously broken usecases that rely on private `angular.Module` APIs (see angular#88 for more info). Fixes angular#88
…d `minErr` This commit updates `loader.js` based on `angular-loader.js` from angular/angular.js#15881, which is essentially the latest loader plus some `minErr` fixes (see angular/angular.js#15881 for more info). Additionally, the loader does a better job staying closer to the original `angular-loader` behavior for versions 1.3+ and it only modifies its behavior to support 1.2 apps. This change also fixes previously broken usecases that rely on private `angular.Module` APIs (see angular#88 for more info). Fixes angular#88
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
A few comments, otherwise LGTM
src/stringify.js
Outdated
@@ -9,7 +13,10 @@ function serializeObject(obj, maxDepth) { | |||
// and a very deep object can cause a performance issue, so we copy the object | |||
// based on this specific depth and then stringify it. | |||
if (isValidObjectMaxDepth(maxDepth)) { | |||
obj = copy(obj, null, maxDepth); | |||
if (!copyFn) { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Shouldn't angular.copy
be always defined here, i.e. at this point in the code, angular.copy should be defined.
src/loader.prefix
Outdated
function isScope(obj) {return obj && obj.$evalAsync && obj.$watch;} | ||
function isWindow(obj) {return obj && obj.window === obj;} | ||
function sliceArgs(args, startIndex) {return Array.prototype.slice.call(args, startIndex || 0);} | ||
function toJsonReplacer(key, value) { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Should we add a note where this and other functions are used? This makes it easier later to check if they are still necessary after refactorings etc.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
You mean add a comment here? Or in the places where these are used?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
In this file - a note at the top is probably enough, saying something of the effect that these functions are defined here because they must be available in angular-loader without angular.js loaded, and that they are copied from the Angular.js file
…d `minErr` This commit updates `loader.js` based on `angular-loader.js` from angular/angular.js#15881, which is essentially the latest loader plus some `minErr` fixes (see angular/angular.js#15881 for more info). Additionally, the loader does a better job staying closer to the original `angular-loader` behavior for versions 1.3+ and it only modifies its behavior to support 1.2 apps. This change also fixes previously broken usecases that rely on private `angular.Module` APIs (see angular#88 for more info). Fixes angular#88
…d `minErr` This commit updates `loader.js` based on `angular-loader.js` from angular/angular.js#15881, which is essentially the latest loader plus some `minErr` fixes (see angular/angular.js#15881 for more info). Additionally, the loader does a better job staying closer to the original `angular-loader` behavior for versions 1.3+ and it only modifies its behavior to support 1.2 apps. This change also fixes previously broken usecases that rely on private `angular.Module` APIs (see #88 for more info). Fixes #88 Closes #311
…be available Code that is distributed as part of both `angular.js` and `angular-loader.js` should not depend on "closure" globals that may not be available in `angular-loader`. Fixes angular#15880
…ay not be available
59dbff0
to
c7e48c0
Compare
Rebased, addressed comments and fixed a bug. Will merge as soon as Travis is happy too. |
LGTM. Looks like nobody uses the loader ... |
What kind of change does this PR introduce? (Bug fix, feature, docs update, ...)
Bug fix.
What is the current behavior? (You can also link to an open issue here)
See #15880.
What is the new behavior (if this is a feature change)?
Code that is distributed as part of both
angular.js
andangular-loader.js
does not depend on "closure" globals that may not be available inangular-loader
.Does this PR introduce a breaking change?
No.
Please check if the PR fulfills these requirements
Docs have been added / updated (for bug fixes / features)Other information:
Fixes #15880.