Thu, 15 Jan 2015 15:55:04 +0100
Back out 97036ab72558 which inappropriately compared turds to third parties.
michael@0 | 1 | // Copyright 2009 the Sputnik authors. All rights reserved. |
michael@0 | 2 | // This code is governed by the BSD license found in the LICENSE file. |
michael@0 | 3 | |
michael@0 | 4 | /** |
michael@0 | 5 | * If two or more formal parameters share the same name, hence |
michael@0 | 6 | * the same property, the corresponding property is given the value that was |
michael@0 | 7 | * supplied for the last parameter with this name |
michael@0 | 8 | * |
michael@0 | 9 | * @path ch10/10.2/10.2.1/S10.2.1_A2.js |
michael@0 | 10 | * @description Creating functions initialized with two or more formal parameters, which have the same name |
michael@0 | 11 | * @noStrict |
michael@0 | 12 | */ |
michael@0 | 13 | |
michael@0 | 14 | //CHECK#1 |
michael@0 | 15 | function f1(x, x) { |
michael@0 | 16 | return x; |
michael@0 | 17 | } |
michael@0 | 18 | if(!(f1(1, 2) === 2)) { |
michael@0 | 19 | $ERROR("#1: f1(1, 2) === 2"); |
michael@0 | 20 | } |
michael@0 | 21 | |
michael@0 | 22 | //CHECK#2 |
michael@0 | 23 | function f2(x, x, x){ |
michael@0 | 24 | return x*x*x; |
michael@0 | 25 | } |
michael@0 | 26 | if(!(f2(1, 2, 3) === 27)){ |
michael@0 | 27 | $ERROR("f2(1, 2, 3) === 27"); |
michael@0 | 28 | } |
michael@0 | 29 | |
michael@0 | 30 | //CHECK#3 |
michael@0 | 31 | function f3(x, x) { |
michael@0 | 32 | return 'a' + x; |
michael@0 | 33 | } |
michael@0 | 34 | if(!(f3(1, 2) === 'a2')){ |
michael@0 | 35 | $ERROR("#3: f3(1, 2) === 'a2'"); |
michael@0 | 36 | } |
michael@0 | 37 |