INNER CODE UNIT · JavaScript
bit
gideros/gideros · emscripten/lzma.js:286
bit = rangeDecoder.decodeBit(this._decoders, ( (1 + matchBit) << 8) + symbol);
symbol = (symbol << 1) | bit;
if (matchBit !== bit){
while(symbol < 0x100){
symbol = (symbol << 1) | rangeDecoder.decodeBit(this._decoders, symbol);
}
break;
}
}while(symbol < 0x100);
return symbol & 0xff;
};
LZMA.LiteralDecoder = function(){
};
LZMA.LiteralDecoder.prototype.create = function(numPosBits, numPrevBits){
var i;