private function processInstance($compiler)
 {
     if (is_object($compiler)) {
         return $compiler;
     } elseif (class_exists($compiler)) {
         return $this->container->getInstance($compiler);
     }
     throw Exception::neitherObjectOrClass($compiler);
 }