Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(405)

Side by Side Diff: src/promise.js

Issue 290633010: Move microtask queueing logic from JavaScript to C++ (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Handle comments Created 6 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « src/object-observe.js ('k') | src/runtime.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright 2012 the V8 project authors. All rights reserved. 1 // Copyright 2012 the V8 project authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 "use strict"; 5 "use strict";
6 6
7 // This file relies on the fact that the following declaration has been made 7 // This file relies on the fact that the following declaration has been made
8 // in runtime.js: 8 // in runtime.js:
9 // var $Object = global.Object 9 // var $Object = global.Object
10 // var $WeakMap = global.WeakMap 10 // var $WeakMap = global.WeakMap
(...skipping 133 matching lines...) Expand 10 before | Expand all | Expand 10 after
144 break; 144 break;
145 } 145 }
146 return deferred.promise; 146 return deferred.promise;
147 } 147 }
148 148
149 function PromiseCatch(onReject) { 149 function PromiseCatch(onReject) {
150 return this.then(UNDEFINED, onReject); 150 return this.then(UNDEFINED, onReject);
151 } 151 }
152 152
153 function PromiseEnqueue(value, tasks) { 153 function PromiseEnqueue(value, tasks) {
154 EnqueueMicrotask(function() { 154 %EnqueueMicrotask(function() {
155 for (var i = 0; i < tasks.length; i += 2) { 155 for (var i = 0; i < tasks.length; i += 2) {
156 PromiseHandle(value, tasks[i], tasks[i + 1]) 156 PromiseHandle(value, tasks[i], tasks[i + 1])
157 } 157 }
158 }); 158 });
159 } 159 }
160 160
161 function PromiseHandle(value, handler, deferred) { 161 function PromiseHandle(value, handler, deferred) {
162 try { 162 try {
163 %DebugPromiseHandlePrologue( 163 %DebugPromiseHandlePrologue(
164 function() { 164 function() {
(...skipping 138 matching lines...) Expand 10 before | Expand all | Expand 10 after
303 SetUpPromise(); 303 SetUpPromise();
304 304
305 // Functions to expose promise details to the debugger. 305 // Functions to expose promise details to the debugger.
306 function GetPromiseStatus(promise) { 306 function GetPromiseStatus(promise) {
307 return GET_PRIVATE(promise, promiseStatus); 307 return GET_PRIVATE(promise, promiseStatus);
308 } 308 }
309 309
310 function GetPromiseValue(promise) { 310 function GetPromiseValue(promise) {
311 return GET_PRIVATE(promise, promiseValue); 311 return GET_PRIVATE(promise, promiseValue);
312 } 312 }
OLDNEW
« no previous file with comments | « src/object-observe.js ('k') | src/runtime.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698