www

Unnamed repository; edit this file 'description' to name the repository.
Log | Files | Refs | Submodules | README | LICENSE

commit 89c569089995905b5cadc5abdcf6ed0d588ce4c3
parent 0490886f28033c604980f0b41d82549e1155610d
Author: Dan Stillman <dstillman@zotero.org>
Date:   Sun, 18 Aug 2013 03:29:39 -0400

Revert q.js change that broke Q.async(function() { var x = yield y });

Diffstat:
Mresource/q.js | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/resource/q.js b/resource/q.js @@ -1280,7 +1280,7 @@ function async(makeGenerator) { } } var generator = makeGenerator.apply(this, arguments); - var callback = continuer.bind(continuer, "next"); + var callback = continuer.bind(continuer, "send"); var errback = continuer.bind(continuer, "throw"); return callback(); };