It is possible?
di.xml
<config xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="urn:magento:framework:ObjectManager/etc/config.xsd">
<type name="Magento\SalesRule\Block\Adminhtml\Promo\Quote">
<plugin name="Vendor_Module::plugin_new" type="Vendor\Module\Plugin\New" sortOrder="1" disabled="true"/>
</type>
</config>
New.php
namespace Vendor\Module\Plugin;
class New{
public function before_construct(ChildBefore $subject, $interceptedInput)
{
echo '<pre>';
var_dump($subject);
var_dump($interceptedInput);
echo '</pre>';
return ["(before) $interceptedInput (/before)"];
}
}