michael@0: function f(x, y, z) { michael@0: if (1) michael@0: x = z; michael@0: return x + y; michael@0: } michael@0: michael@0: assertEq(f(0, 2, {}), "[object Object]2")