1 PASS Function("'use strict'; delete x;") threw exception of type SyntaxError.
2 PASS !!Function("delete x;") is true
4 PASS Function("'use strict'; delete (x);") threw exception of type SyntaxError.
5 PASS !!Function("delete (x);") is true
7 PASS !!Function("'use strict'; delete x.y;") is true
8 PASS !!Function("delete x.y;") is true
10 PASS Function("'use strict'; function f() { delete x; }") threw exception of type SyntaxError.
11 PASS !!Function("function f() { delete x; }") is true
13 PASS Function("'use strict'; function f() { \"use strict\"; delete x; }") threw exception of type SyntaxError.
14 PASS Function("function f() { \"use strict\"; delete x; }") threw exception of type SyntaxError.
17 PASS successfullyParsed is true