|
1 // Copyright 2009 the Sputnik authors. All rights reserved. |
|
2 // This code is governed by the BSD license found in the LICENSE file. |
|
3 |
|
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 */ |
|
10 |
|
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(){}); |
|
21 |
|
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 ////////////////////////////////////////////////////////////////////////////// |
|
29 |