Inheritance: extends Dissect\Parser\LALR1\Parser
 /**
  * Tests parsing
  *
  * @dataProvider validPointcutDefinitions
  */
 public function testParsingExpression($pointcutExpression)
 {
     $stream = $this->lexer->lex($pointcutExpression);
     $result = $this->parser->parse($stream);
     $this->assertNotNull($result);
 }