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