Skip to content
This repository was archived by the owner on Apr 12, 2024. It is now read-only.

fix($q): correctly set constructor on prototypes #10697

Closed
wants to merge 3 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
25 changes: 25 additions & 0 deletions lib/promises-aplus/promises-aplus-test-adapter.js
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,31 @@ var minErr = function minErr (module, constructor) {
throw new ErrorConstructor(module + arguments[0] + arguments[1]);
};
};
var setHashKey = function setHashKey(obj, h) {
if (h) {
obj.$$hashKey = h;
}
else {
delete obj.$$hashKey;
}
}
var extend = function extend(dst) {
var h = dst.$$hashKey;

for (var i = 1, ii = arguments.length; i < ii; i++) {
var obj = arguments[i];
if (obj) {
var keys = Object.keys(obj);
for (var j = 0, jj = keys.length; j < jj; j++) {
var key = keys[j];
dst[key] = obj[key];
}
}
}

setHashKey(dst, h);
return dst;
}

var $q = qFactory(process.nextTick, function noopExceptionHandler() {});

Expand Down
10 changes: 6 additions & 4 deletions src/ng/q.js
Original file line number Diff line number Diff line change
Expand Up @@ -270,7 +270,9 @@ function qFactory(nextTick, exceptionHandler) {
this.$$state = { status: 0 };
}

Promise.prototype = {
extend(Promise.prototype, {
constructor: Promise,

then: function(onFulfilled, onRejected, progressBack) {
var result = new Deferred();

Expand All @@ -292,7 +294,7 @@ function qFactory(nextTick, exceptionHandler) {
return handleCallback(error, false, callback);
}, progressBack);
}
};
});

//Faster, more basic than angular.bind http://jsperf.com/angular-bind-vs-custom-vs-native
function simpleBind(context, fn) {
Expand Down Expand Up @@ -339,7 +341,7 @@ function qFactory(nextTick, exceptionHandler) {
this.notify = simpleBind(this, this.notify);
}

Deferred.prototype = {
extend(Deferred.prototype, {
resolve: function(val) {
if (this.promise.$$state.status) return;
if (val === this.promise) {
Expand Down Expand Up @@ -403,7 +405,7 @@ function qFactory(nextTick, exceptionHandler) {
});
}
}
};
});

/**
* @ngdoc method
Expand Down