/**
  * Constructor.
  *
  * @param Tx_Fluid_Core_ViewHelper_AbstractViewHelper $viewHelper The view helper
  * @param array $arguments Arguments of view helper - each value is a RootNode.
  * @author Sebastian Kurfürst <*****@*****.**>
  * @author Karsten Dambekalns <*****@*****.**>
  */
 public function __construct(Tx_Fluid_Core_ViewHelper_AbstractViewHelper $viewHelper, array $arguments)
 {
     $this->uninitializedViewHelper = $viewHelper;
     $this->viewHelpersByContext = t3lib_div::makeInstance('Tx_Extbase_Persistence_ObjectStorage');
     $this->arguments = $arguments;
     if (FALSE) {
         $this->viewHelperClassName = $this->uninitializedViewHelper->FLOW3_AOP_Proxy_getProxyTargetClassName();
     } else {
         $this->viewHelperClassName = get_class($this->uninitializedViewHelper);
     }
 }