Actions
Task #91229
closedUse proper TypeScript functions instead of arrow functions
Status:
Closed
Priority:
Should have
Assignee:
-
Category:
Backend JavaScript
Target version:
-
Start date:
2020-04-28
Due date:
% Done:
100%
Estimated time:
TYPO3 Version:
9
PHP Version:
Tags:
Complexity:
Sprint Focus:
Description
Currently arrow functions (like delta functions or closure functions) are assigned to class properties.
public handleSubmit = (event: Event): void => { }
which could be simplified as real functions
public handleSubmit(event: Event): void { }
In PHP the original scenario would look like
class Thing { public $handleSubmit; public function __construct() { $this->handleSubmit = function($event) {} } }
Updated by Gerrit Code Review over 4 years ago
- Status changed from New to Under Review
Patch set 1 for branch master of project Packages/TYPO3.CMS has been pushed to the review server.
It is available at https://review.typo3.org/c/Packages/TYPO3.CMS/+/64341
Updated by Gerrit Code Review over 4 years ago
Patch set 2 for branch master of project Packages/TYPO3.CMS has been pushed to the review server.
It is available at https://review.typo3.org/c/Packages/TYPO3.CMS/+/64341
Updated by Oliver Hader over 4 years ago
- Status changed from Under Review to Resolved
- % Done changed from 0 to 100
Applied in changeset 07280a4f6cca6517621453db0d6aad5767990612.
Actions