|
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 * Objects as arguments are passed by reference |
|
6 * |
|
7 * @path ch13/13.2/S13.2.1_A4_T3.js |
|
8 * @description Adding new number property to a function argument within the function body, |
|
9 * where array element "arguments[0]" is an object defined with "__obj={}" |
|
10 */ |
|
11 |
|
12 function __func(){ |
|
13 arguments[0]["PI"]=3.14; |
|
14 } |
|
15 |
|
16 var __obj={}; |
|
17 |
|
18 __func(__obj); |
|
19 |
|
20 ////////////////////////////////////////////////////////////////////////////// |
|
21 //CHECK#1 |
|
22 if (__obj.PI !== 3.14) { |
|
23 $ERROR('#1: __obj.PI === 3.14. Actual: __obj.PI ==='+__obj.PI); |
|
24 } |
|
25 // |
|
26 ////////////////////////////////////////////////////////////////////////////// |
|
27 |