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