зеркало из https://github.com/mozilla/gecko-dev.git
Bug 1185106 - Part 11.5: Add async function constructor and prototype. r=till
MozReview-Commit-ID: DKdeWuAdhrY
This commit is contained in:
Родитель
75a6a457af
Коммит
f76ad02048
|
@ -0,0 +1,33 @@
|
|||
var BUGNUMBER = 1185106;
|
||||
var summary = "async function constructor and prototype";
|
||||
|
||||
print(BUGNUMBER + ": " + summary);
|
||||
|
||||
var f1 = async function() {};
|
||||
|
||||
var AsyncFunction = f1.constructor;
|
||||
var AsyncFunctionPrototype = AsyncFunction.prototype;
|
||||
|
||||
assertEq(AsyncFunction.name, "AsyncFunction");
|
||||
assertEq(AsyncFunction.length, 1);
|
||||
assertEq(Object.getPrototypeOf(async function() {}), AsyncFunctionPrototype);
|
||||
|
||||
assertEq(AsyncFunctionPrototype.constructor, AsyncFunction);
|
||||
|
||||
var f2 = AsyncFunction("await 1");
|
||||
assertEq(f2.constructor, AsyncFunction);
|
||||
assertEq(f2.length, 0);
|
||||
assertEq(Object.getPrototypeOf(f2), AsyncFunctionPrototype);
|
||||
|
||||
var f3 = new AsyncFunction("await 1");
|
||||
assertEq(f3.constructor, AsyncFunction);
|
||||
assertEq(f3.length, 0);
|
||||
assertEq(Object.getPrototypeOf(f3), AsyncFunctionPrototype);
|
||||
|
||||
var f4 = AsyncFunction("a", "b", "c", "await 1");
|
||||
assertEq(f4.constructor, AsyncFunction);
|
||||
assertEq(f4.length, 3);
|
||||
assertEq(Object.getPrototypeOf(f4), AsyncFunctionPrototype);
|
||||
|
||||
if (typeof reportCompare === "function")
|
||||
reportCompare(true, true);
|
Загрузка…
Ссылка в новой задаче