protected function compileParser(GeneratedParser $parser) : string
 {
     return $parser->compile();
 }
Example #2
0
 public function parse(string $input) : ExpressionInterface
 {
     return new Expression(parent::parse($input), $this->delimStart, $this->delimEnd);
 }