trifork / erjang

A JVM-based Erlang VM
http://www.erjang.org
Apache License 2.0
727 stars 62 forks source link

Refactor EBitString to use extraBits (not bits) #4

Closed krestenkrab closed 14 years ago

krestenkrab commented 14 years ago

Currently EBitString has a "long bits" field, counting the total number of bits in a bitstring. This needs to be refactored into an "int octets" and "int extrabits", where extrabits is a number in the range 0..7.

krestenkrab commented 14 years ago

Fixed a while ago.