AsyncFunction.js (617B)
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/. */ 4 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"); 11 } 12 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"); 19 }