michael@0: // Forward to the target if the trap is not defined michael@0: var target = { michael@0: foo: 'bar' michael@0: }; michael@0: Proxy(target, {})['foo'] = 'baz'; michael@0: assertEq(target.foo, 'baz');