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

Side by Side Diff: src/js/async-await.js

Issue 2365123002: Move async/await JS support code out of experimental natives (Closed)
Patch Set: Alphabetize Created 4 years, 2 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
OLDNEW
1 // Copyright 2016 the V8 project authors. All rights reserved. 1 // Copyright 2016 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 (function(global, utils, extrasUtils) { 5 (function(global, utils, extrasUtils) {
6 6
7 "use strict"; 7 "use strict";
8 8
9 %CheckIsBootstrapping(); 9 %CheckIsBootstrapping();
10 10
(...skipping 160 matching lines...) Expand 10 before | Expand all | Expand 10 after
171 171
172 %InstallToContext([ 172 %InstallToContext([
173 "async_function_await_caught", AsyncFunctionAwaitCaught, 173 "async_function_await_caught", AsyncFunctionAwaitCaught,
174 "async_function_await_uncaught", AsyncFunctionAwaitUncaught, 174 "async_function_await_uncaught", AsyncFunctionAwaitUncaught,
175 "reject_promise_no_debug_event", RejectPromiseNoDebugEvent, 175 "reject_promise_no_debug_event", RejectPromiseNoDebugEvent,
176 "async_function_promise_create", AsyncFunctionPromiseCreate, 176 "async_function_promise_create", AsyncFunctionPromiseCreate,
177 "async_function_promise_release", AsyncFunctionPromiseRelease, 177 "async_function_promise_release", AsyncFunctionPromiseRelease,
178 ]); 178 ]);
179 179
180 }) 180 })
OLDNEW
« no previous file with comments | « src/bootstrapper.cc ('k') | src/js/harmony-async-await.js » ('j') | src/js/prologue.js » ('J')

Powered by Google App Engine
This is Rietveld 408576698