js/src/tests/test262/ch13/13.0/S13_A10.js

branch
TOR_BUG_3246
changeset 5
4ab42b5ab56c
equal deleted inserted replaced
-1:000000000000 0:c7f812ecb210
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 * Function is a data
6 *
7 * @path ch13/13.0/S13_A10.js
8 * @description Using function as a property of an object
9 */
10
11 function __ziggy__func(){return "ziggy stardust"}
12
13 var __music_box={};
14
15 __music_box.ziggy = __ziggy__func;
16
17 //////////////////////////////////////////////////////////////////////////////
18 //CHECK#
19 if (typeof __music_box.ziggy !== "function") {
20 $ERROR('#1: typeof __music_box.ziggy === "function". Actual: typeof __music_box.ziggy ==='+typeof __music_box.ziggy);
21 }
22 //
23 //////////////////////////////////////////////////////////////////////////////
24
25 //////////////////////////////////////////////////////////////////////////////
26 //CHECK#2
27 if (__music_box.ziggy() !== "ziggy stardust") {
28 $ERROR('#2: __music_box.ziggy() === "ziggy stardust". Actual: __music_box.ziggy() ==='+__music_box.ziggy());
29 }
30 //
31 //////////////////////////////////////////////////////////////////////////////
32

mercurial