Project

General

Profile

Actions

Task #91229

closed

Use proper TypeScript functions instead of arrow functions

Added by Oliver Hader almost 4 years ago. Updated almost 4 years ago.

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) {}
  }
}
Actions

Also available in: Atom PDF