Skip to content
Snippets Groups Projects
Commit 79dfcf3e authored by Rick Waldron's avatar Rick Waldron
Browse files

Restore missing object definitions

parent b92e6864
No related branches found
No related tags found
No related merge requests found
......@@ -52,6 +52,8 @@ assert.sameValue(2 ** !n, 1, "!s -> !2 -> false -> ToNumber(false) -> 0");
var capture = [];
var leftValue = { valueOf() { capture.push("leftValue"); return 3; }};
var rightValue = { valueOf() { capture.push("rightValue"); return 2; }};
(capture.push("left"), leftValue) ** +(capture.push("right"), rightValue);
// ^
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment