diff --git a/test/language/statements/async-function/cptn-decl.js b/test/language/statements/async-function/cptn-decl.js new file mode 100644 index 0000000000000000000000000000000000000000..1bc375a892349efa43273c22869c3e306e130862 --- /dev/null +++ b/test/language/statements/async-function/cptn-decl.js @@ -0,0 +1,13 @@ +// Copyright (C) 2017 Apple Inc. All rights reserved. +// This code is governed by the BSD license found in the LICENSE file. +/*--- +esid: sec-async-function-definitions-runtime-semantics-evaluation +description: Async function declaration completion value is empty. +info: > + AsyncFunctionDeclaration : async [no LineTerminator here] function BindingIdentifier ( FormalParameters ) { AsyncFunctionBody } + + 1. Return NormalCompletion(empty). +---*/ + +assert.sameValue(eval('async function f() {}'), undefined); +assert.sameValue(eval('1; async function f() {}'), 1); diff --git a/test/language/statements/class/cptn-decl.js b/test/language/statements/class/cptn-decl.js new file mode 100644 index 0000000000000000000000000000000000000000..709b23026fd74652af7d2c75d774af63fffe8b8e --- /dev/null +++ b/test/language/statements/class/cptn-decl.js @@ -0,0 +1,14 @@ +// Copyright (C) 2017 Apple Inc. All rights reserved. +// This code is governed by the BSD license found in the LICENSE file. +/*--- +esid: sec-class-definitions-runtime-semantics-evaluation +description: Class declaration completion value is empty. +info: > + ClassDeclaration : class BindingIdentifier ClassTail + + 1. Perform ? BindingClassDeclarationEvaluation of this ClassDeclaration. + 2. Return NormalCompletion(empty). +---*/ + +assert.sameValue(eval('class C {}'), undefined); +assert.sameValue(eval('1; class C {}'), 1); diff --git a/test/language/statements/function/cptn-decl.js b/test/language/statements/function/cptn-decl.js new file mode 100644 index 0000000000000000000000000000000000000000..7960fd49fae75a4d63965a2e93444b547aebdbcc --- /dev/null +++ b/test/language/statements/function/cptn-decl.js @@ -0,0 +1,13 @@ +// Copyright (C) 2017 Apple Inc. All rights reserved. +// This code is governed by the BSD license found in the LICENSE file. +/*--- +esid: sec-function-definitions-runtime-semantics-evaluation +description: Function declaration completion value is empty. +info: > + FunctionDeclaration : function BindingIdentifier ( FormalParameters ) { FunctionBody } + + 1. Return NormalCompletion(empty). +---*/ + +assert.sameValue(eval('function f() {}'), undefined); +assert.sameValue(eval('1; function f() {}'), 1); diff --git a/test/language/statements/generators/cptn-decl.js b/test/language/statements/generators/cptn-decl.js new file mode 100644 index 0000000000000000000000000000000000000000..ccf8a923526781963c45c8266991f4dd4dbdc054 --- /dev/null +++ b/test/language/statements/generators/cptn-decl.js @@ -0,0 +1,17 @@ +// Copyright (C) 2017 Apple Inc. All rights reserved. +// This code is governed by the BSD license found in the LICENSE file. +/*--- +esid: sec-statement-semantics-runtime-semantics-evaluation +description: Generator declaration completion value is empty. +info: > + GeneratorDeclaration[Yield, Await, Default]: + + function * BindingIdentifier[?Yield, ?Await] ( FormalParameters[+Yield, ~Await] ) { GeneratorBody } + + HoistableDeclaration : GeneratorDeclaration + + 1. Return NormalCompletion(empty). +---*/ + +assert.sameValue(eval('function* f() {}'), undefined); +assert.sameValue(eval('1; function* f() {}'), 1);