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