private function parseSingleDash()
 {
     $this->expect(Token::T_SINGLE_DASH);
     $command = new Definition('Command');
     $command->addTransition(new CommandTransition('-', $command->getState('end')), 'start');
     $this->append($command);
 }