if (b < 0x00 || b > 0x7f) {
            const reason = `byte out of range 0x00 <= ${b} <= 0x7F`;
            const object = bytes;
            const position = {start, end: start + 1};
            throw new ASCIIDecodeError(reason, object, position);