Sign in
webkit
/
WebKit
/
a93db0d3fe1c76f7eeb6cf6a8602b63fe8ff9d50
/
.
/
LayoutTests
/
js
/
script-tests
/
arrowfunction-constructor.js
blob: aefad076847bff4929f7807765f990b7373cdf6d [
file
] [
log
] [
blame
]
description
(
'Tests for ES6 arrow function no constructor'
);
var
simpleArrowFunction
=
()
=>
{};
shouldThrow
(
'new simpleArrowFunction()'
);
var
successfullyParsed
=
true
;