The Renderer object will evaluate to a result using either renderer, renderPath or type from the configuration.
Inheritance: extends AbstractTypoScriptObject
 /**
  * If $condition matches, render $type and return it. Else, return MATCH_NORESULT.
  *
  * @return mixed
  */
 public function evaluate()
 {
     if ($this->getCondition()) {
         return parent::evaluate();
     } else {
         return CaseImplementation::MATCH_NORESULT;
     }
 }