summaryrefslogtreecommitdiffstats
path: root/js/src/tests/test262/language/statements/function/cptn-decl.js
blob: 7e0c9a90cdd2149f5f846417f93e1b02c742acbd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
// 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);

reportCompare(0, 0);