Exemplo n.º 1
0
 public function __construct(Token $previous = null, $totalBitCount, $value, $bitCount)
 {
     parent::__construct($previous, $totalBitCount);
     $this->value = $value;
     $this->bitCount = $bitCount;
 }
Exemplo n.º 2
0
 public static function createInitialState()
 {
     return new self(Token::createEmpty(), DynamicDataEncoder::MODE_UPPER, 0, 0);
 }
Exemplo n.º 3
0
 public function __construct(Token $previous = null, $totalBitCount, $shiftStart, $shiftByteCount)
 {
     parent::__construct($previous, $totalBitCount);
     $this->shiftStart = $shiftStart;
     $this->shiftByteCount = $shiftByteCount;
 }