1 PASS Function("'use strict'; try{}catch(eval){}") threw exception of type SyntaxError.
2 PASS !!Function("try{}catch(eval){}") is true
4 PASS Function("'use strict'; try{}catch([eval]){}") threw exception of type SyntaxError.
5 PASS Function("try{}catch([eval]){}") threw exception of type SyntaxError.
7 PASS Function("'use strict'; try{}catch({x:eval}){}") threw exception of type SyntaxError.
8 PASS Function("try{}catch({x:eval}){}") threw exception of type SyntaxError.
10 PASS Function("'use strict'; try{}catch(arguments){}") threw exception of type SyntaxError.
11 PASS !!Function("try{}catch(arguments){}") is true
13 PASS Function("'use strict'; try{}catch([arguments]){}") threw exception of type SyntaxError.
14 PASS Function("try{}catch([arguments]){}") threw exception of type SyntaxError.
16 PASS Function("'use strict'; try{}catch({x:arguments}){}") threw exception of type SyntaxError.
17 PASS Function("try{}catch({x:arguments}){}") threw exception of type SyntaxError.
20 PASS successfullyParsed is true