michael@0: // Forward to the target if the trap is undefined michael@0: var target = function (x, y) { michael@0: return x + y; michael@0: } michael@0: assertEq(Proxy(target, {})(2, 3), 5);