blob: ca97b1d001c702702ffc4c26be355a4b2b2a4f64 [file] [log] [blame]
PASS Function("'use strict'; try{}catch(eval){}") threw exception of type SyntaxError.
PASS !!Function("try{}catch(eval){}") is true
PASS true === true
PASS Function("'use strict'; try{}catch([eval]){}") threw exception of type SyntaxError.
PASS !!Function("try{}catch([eval]){}") is true
PASS true === true
PASS Function("'use strict'; try{}catch({x:eval}){}") threw exception of type SyntaxError.
PASS !!Function("try{}catch({x:eval}){}") is true
PASS true === true
PASS Function("'use strict'; try{}catch(arguments){}") threw exception of type SyntaxError.
PASS !!Function("try{}catch(arguments){}") is true
PASS true === true
PASS Function("'use strict'; try{}catch([arguments]){}") threw exception of type SyntaxError.
PASS !!Function("try{}catch([arguments]){}") is true
PASS true === true
PASS Function("'use strict'; try{}catch({x:arguments}){}") threw exception of type SyntaxError.
PASS !!Function("try{}catch({x:arguments}){}") is true
PASS true === true
PASSED!
PASS successfullyParsed is true
TEST COMPLETE