Bug 1874684 - Part 21: Rename SecondsAndNanoseconds::toTotalNanoseconds. r=dminor
[gecko.git] / js / src / builtin / AsyncFunction.js
blob9ce2be80275b1e0b339ddc3967f93cfddaae64ee
1 /* This Source Code Form is subject to the terms of the Mozilla Public
2  * License, v. 2.0. If a copy of the MPL was not distributed with this
3  * file, You can obtain one at http://mozilla.org/MPL/2.0/. */
5 function AsyncFunctionNext(val) {
6   assert(
7     IsAsyncFunctionGeneratorObject(this),
8     "ThisArgument must be a generator object for async functions"
9   );
10   return resumeGenerator(this, val, "next");
13 function AsyncFunctionThrow(val) {
14   assert(
15     IsAsyncFunctionGeneratorObject(this),
16     "ThisArgument must be a generator object for async functions"
17   );
18   return resumeGenerator(this, val, "throw");