built-ins/AsyncFunction/*: make all indentation consistent (depth & character)

This commit is contained in:
Rick Waldron 2018-02-12 10:15:52 -05:00
parent 66eaf57f88
commit 8342824894
15 changed files with 17 additions and 19 deletions

View File

@ -12,4 +12,3 @@ var AsyncFunction = foo.constructor;
assert.sameValue(Object.getPrototypeOf(AsyncFunction), Function, "Prototype of constructor is Function");
assert.sameValue(Object.getPrototypeOf(AsyncFunction.prototype), Function.prototype, "Prototype of constructor's prototype is Function.prototype");
assert(foo instanceof Function, 'async function instance is instanceof Function');

View File

@ -11,4 +11,3 @@ description: >
var AsyncFunction = async function foo() {}.constructor;
AsyncFunction.prototype.x = 1;
assert.sameValue(AsyncFunction.prototype.x, 1);