Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
R
rsvp.js
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Romain Courteaud
rsvp.js
Commits
5119ff77
Commit
5119ff77
authored
Jun 29, 2013
by
Stefan Penner
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
satisfy both 1.0 and 1.1 specs
parent
53d478fb
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
19 additions
and
10 deletions
+19
-10
lib/rsvp/promise.js
lib/rsvp/promise.js
+19
-10
No files found.
lib/rsvp/promise.js
View file @
5119ff77
...
@@ -10,7 +10,8 @@ function isFunction(x){
...
@@ -10,7 +10,8 @@ function isFunction(x){
}
}
var
Promise
=
function
(
resolver
)
{
var
Promise
=
function
(
resolver
)
{
var
promise
=
this
;
var
promise
=
this
,
resolved
=
false
;
if
(
typeof
resolver
!==
'
function
'
)
{
if
(
typeof
resolver
!==
'
function
'
)
{
throw
new
TypeError
(
'
You must pass a resolver function as the sole argument to the promise constructor
'
);
throw
new
TypeError
(
'
You must pass a resolver function as the sole argument to the promise constructor
'
);
...
@@ -21,10 +22,14 @@ var Promise = function(resolver) {
...
@@ -21,10 +22,14 @@ var Promise = function(resolver) {
}
}
var
resolvePromise
=
function
(
value
)
{
var
resolvePromise
=
function
(
value
)
{
if
(
resolved
)
{
return
;
}
resolved
=
true
;
resolve
(
promise
,
value
);
resolve
(
promise
,
value
);
};
};
var
rejectPromise
=
function
(
value
)
{
var
rejectPromise
=
function
(
value
)
{
if
(
resolved
)
{
return
;
}
resolved
=
true
;
reject
(
promise
,
value
);
reject
(
promise
,
value
);
};
};
...
@@ -83,9 +88,12 @@ var invokeCallback = function(type, promise, callback, event) {
...
@@ -83,9 +88,12 @@ var invokeCallback = function(type, promise, callback, event) {
Promise
.
prototype
=
{
Promise
.
prototype
=
{
constructor
:
Promise
,
constructor
:
Promise
,
isFulfilled
:
undefined
,
isRejected
:
undefined
,
isRejected
:
undefined
,
isResolved
:
undefined
,
isFulfilled
:
undefined
,
rejectedReason
:
undefined
,
fulfillmentValue
:
undefined
,
then
:
function
(
done
,
fail
)
{
then
:
function
(
done
,
fail
)
{
this
.
off
(
'
error
'
,
onerror
);
this
.
off
(
'
error
'
,
onerror
);
...
@@ -126,7 +134,8 @@ function resolve(promise, value) {
...
@@ -126,7 +134,8 @@ function resolve(promise, value) {
}
}
function
handleThenable
(
promise
,
value
)
{
function
handleThenable
(
promise
,
value
)
{
var
then
=
null
;
var
then
=
null
,
resolved
;
try
{
try
{
if
(
objectOrFunction
(
value
))
{
if
(
objectOrFunction
(
value
))
{
...
@@ -134,12 +143,18 @@ function handleThenable(promise, value) {
...
@@ -134,12 +143,18 @@ function handleThenable(promise, value) {
if
(
isFunction
(
then
))
{
if
(
isFunction
(
then
))
{
then
.
call
(
value
,
function
(
val
)
{
then
.
call
(
value
,
function
(
val
)
{
if
(
resolved
)
{
return
true
;
}
resolved
=
true
;
if
(
value
!==
val
)
{
if
(
value
!==
val
)
{
resolve
(
promise
,
val
);
resolve
(
promise
,
val
);
}
else
{
}
else
{
fulfill
(
promise
,
val
);
fulfill
(
promise
,
val
);
}
}
},
function
(
val
)
{
},
function
(
val
)
{
if
(
resolved
)
{
return
true
;
}
resolved
=
true
;
reject
(
promise
,
val
);
reject
(
promise
,
val
);
});
});
...
@@ -155,9 +170,6 @@ function handleThenable(promise, value) {
...
@@ -155,9 +170,6 @@ function handleThenable(promise, value) {
}
}
function
fulfill
(
promise
,
value
)
{
function
fulfill
(
promise
,
value
)
{
if
(
promise
.
isResolved
){
return
;
}
promise
.
isResolved
=
true
;
config
.
async
(
function
()
{
config
.
async
(
function
()
{
promise
.
trigger
(
'
promise:resolved
'
,
{
detail
:
value
});
promise
.
trigger
(
'
promise:resolved
'
,
{
detail
:
value
});
promise
.
isFulfilled
=
true
;
promise
.
isFulfilled
=
true
;
...
@@ -166,9 +178,6 @@ function fulfill(promise, value) {
...
@@ -166,9 +178,6 @@ function fulfill(promise, value) {
}
}
function
reject
(
promise
,
value
)
{
function
reject
(
promise
,
value
)
{
if
(
promise
.
isResolved
){
return
;
}
promise
.
isResolved
=
true
;
config
.
async
(
function
()
{
config
.
async
(
function
()
{
promise
.
trigger
(
'
promise:failed
'
,
{
detail
:
value
});
promise
.
trigger
(
'
promise:failed
'
,
{
detail
:
value
});
promise
.
isRejected
=
true
;
promise
.
isRejected
=
true
;
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment