2 "This test checks whether various forms of postincrement expression are allowed."
9 shouldBe('window.x++', '1');
10 shouldBe('window["x"]++', '2');
11 shouldBe('(x)++', '3');
12 shouldBe('(window.x)++', '4');
13 shouldBe('(window["x"])++', '5');
14 shouldBe('(y, x++)', '6');
15 shouldBe('((x))++', '7');
16 shouldBe('((window.x))++', '8');
17 shouldBe('((window["x"]))++', '9');
19 shouldThrow('(y, x)++');
20 shouldThrow('(true ? x : y)++');