Sign in
webkit
/
WebKit
/
c2482f3ae25f413cff2e13443ac27ae81b76180f
/
.
/
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
;