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

Commit 1b331f3

Browse files
committed
chore($q): convert thrown Error to $minErr when calling $q constructor without resolver
1 parent a6bd4bc commit 1b331f3

File tree

2 files changed

+19
-2
lines changed

2 files changed

+19
-2
lines changed

docs/content/error/$q/norslvr.ngdoc

+17
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
@ngdoc error
2+
@name $q:norslvr
3+
@fullName No resolver function passed to $Q
4+
@description
5+
6+
Occurs when calling creating a promise using {@link $q} as a constructor, without providing the
7+
required `resolver` function.
8+
9+
```
10+
//bad
11+
var promise = $q().then(doSomething);
12+
13+
//good
14+
var promise = $q(function(resolve, reject) {
15+
waitForSomethingAsync.then(resolve);
16+
}).then(doSomething);
17+
```

src/ng/q.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -235,6 +235,7 @@ function $$QProvider() {
235235
* @returns {object} Promise manager.
236236
*/
237237
function qFactory(nextTick, exceptionHandler) {
238+
var $qMinErr = minErr('$q');
238239
function callOnce(self, resolveFn, rejectFn) {
239240
var called = false;
240241
function wrap(fn) {
@@ -522,8 +523,7 @@ function qFactory(nextTick, exceptionHandler) {
522523

523524
var $Q = function Q(resolver) {
524525
if (!isFunction(resolver)) {
525-
// TODO(@caitp): minErr this
526-
throw new TypeError('Expected resolverFn');
526+
throw $qMinErr('norslvr', "Expected resolverFn, got '{0}'", resolver);
527527
}
528528

529529
if (!(this instanceof Q)) {

0 commit comments

Comments
 (0)