Wed, 31 Dec 2014 13:27:57 +0100
Ignore runtime configuration files generated during quality assurance.
1 // Copyright 2009 the Sputnik authors. All rights reserved.
2 // This code is governed by the BSD license found in the LICENSE file.
4 /**
5 * FunctionExpression within a "do-while" statement is allowed, but no function with the given name will appear in the global context
6 *
7 * @path ch12/12.6/12.6.1/S12.6.1_A10.js
8 * @description Also this a test on FunctionExpression
9 */
11 var check = 0;
12 do {
13 if(typeof(f) === "function"){
14 check = -1;
15 break;
16 } else {
17 check = 1;
18 break;
19 }
20 } while(function f(){});
22 //////////////////////////////////////////////////////////////////////////////
23 //CHECK#1
24 if (check !== 1) {
25 $ERROR('#1: FunctionExpression within a "do-while" statement is allowed, but no function with the given name will appear in the global context');
26 }
27 //
28 //////////////////////////////////////////////////////////////////////////////