Example #1
0
 /**
  * Initializes this reflector with the correct node as produced by
  * PHP-Parser.
  *
  * @param PHPParser_NodeAbstract $node
  * @param Context                $context
  *
  * @link http://github.com/nikic/PHP-Parser
  */
 public function __construct(PHPParser_NodeAbstract $node, Context $context)
 {
     $this->node = $node;
     $context->setLSEN($this->getLSEN());
     $this->context = $context;
 }