A logical and resource consumption issue in the \Magento\Ui\Component\Form\Element\Wysiwyg::__construct() method: the editorElement object in unnecessary set as property but in never used (and can not be used) outside the single method

https://github.com/magento/magento2/blob/c58d2d/app/code/Magento/Ui/Component/Form/Element/Wysiwyg.php#L43

There is no any sense to use editorElement object outside the single method because $editorElement->getElementHtml() is already called:

https://github.com/magento/magento2/blob/c58d2d/app/code/Magento/Ui/Component/Form/Element/Wysiwyg.php#L50

Propose to remove the editorElement object property and use editorElement as a local variable only.

https://github.com/magento/magento2/issues/3188