/**
  * Initialize a new instance of a CLDRPluralRuleConverter_Operator object
  *
  * @param CLDRPluralRuleConverter $parser The parser
  * @param string $name The operator name
  * @param int $pos The length
  * @param int $length
  */
 function __construct($parser, $name, $pos, $length)
 {
     parent::__construct($parser, $pos, $length);
     if (isset(self::$aliasMap[$name])) {
         $name = self::$aliasMap[$name];
     }
     $this->name = $name;
 }
 function __construct($parser, $name, $pos, $length)
 {
     parent::__construct($parser, $pos, $length);
     $this->name = $name;
 }
 function __construct($parser, $type, $rpn, $pos, $length)
 {
     parent::__construct($parser, $pos, $length);
     $this->type = $type;
     $this->rpn = $rpn;
 }