Bug 149410
Summary: | [ES6] Arrow function syntax. Implement property 'name' | ||
---|---|---|---|
Product: | WebKit | Reporter: | GSkachkov <gskachkov> |
Component: | JavaScriptCore | Assignee: | Nobody <webkit-unassigned> |
Status: | RESOLVED FIXED | ||
Severity: | Normal | CC: | rniwa, saam |
Priority: | P2 | ||
Version: | WebKit Nightly Build | ||
Hardware: | Unspecified | ||
OS: | Unspecified | ||
Bug Depends on: | |||
Bug Blocks: | 140855 |
GSkachkov
Arrow function should support 'name' property.
http://www.ecma-international.org/ecma-262/6.0/#sec-setfunctionname
let a = () => {};
a.name === 'a'; //TRUE
Attachments | ||
---|---|---|
Add attachment proposed patch, testcase, etc. |
GSkachkov
Already implemented