blob: 61ac34f7b9553648410e9e2c1264348d5440412e [file] [log] [blame]
// This file was procedurally generated from the following sources:
// - src/function-forms/forbidden-ext-direct-access-prop-caller.case
// - src/function-forms/forbidden-extensions/bullet-one/cls-decl-async-meth.template
/*---
description: Forbidden extension, o.caller (class declaration async method)
esid: sec-class-definitions-runtime-semantics-evaluation
features: [arrow-function, async-functions, class]
flags: [generated, noStrict, async]
info: |
ClassDeclaration : class BindingIdentifier ClassTail
ECMAScript function objects defined using syntactic constructors in strict mode code must
not be created with own properties named "caller" or "arguments". Such own properties also
must not be created for function objects defined using an ArrowFunction, MethodDefinition,
GeneratorDeclaration, GeneratorExpression, AsyncGeneratorDeclaration, AsyncGeneratorExpression,
ClassDeclaration, ClassExpression, AsyncFunctionDeclaration, AsyncFunctionExpression, or
AsyncArrowFunction regardless of whether the definition is contained in strict mode code.
Built-in functions, strict functions created using the Function constructor, generator functions
created using the Generator constructor, async functions created using the AsyncFunction
constructor, and functions created using the bind method also must not be created with such own
properties.
---*/
var callCount = 0;
class C {
async method() {
assert.sameValue(this.method.hasOwnProperty("caller"), false);
callCount++;
}
}
C.prototype.method()
.then(() => {
assert.sameValue(callCount, 1, 'function body evaluated');
}, $DONE).then($DONE, $DONE);