michael@0: var x = 5; michael@0: let (x = x) michael@0: assertEq(x, 5); michael@0: let (x = eval("x")) michael@0: assertEq(x, 5); michael@0: let (x = function () { with ({}) return x; }) michael@0: assertEq(x(), 5);