public function __construct($class = NULL)
 {
     parent::__construct();
     $this->class = $class;
     $this->nodes = [];
 }
 public function __construct($methodNode)
 {
     parent::__construct();
     $this->methodName = str_replace('()', '', trim($methodNode));
 }
 public function __construct()
 {
     parent::__construct();
     $this->matchAll = false;
 }