Press n or j to go to the next uncovered block, b, p or k for the previous block.
| 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 | 41x 41x 41x 41x 41x 41x 41x 41x 41x 4098x 4098x 4098x 41x 41x 405x 405x 405x 41x 41x 4011x 4011x 4011x 41x 41x 41x 41x 41x 41x 41x 41x 41x 41x 41x 41x 13444x 13444x 13444x 41x 41x 4841x 4841x 4841x 41x 41x 13207x 13207x 13207x 41x 41x 41x 41x 41x 41x | // Copyright (c) ZeroC, Inc.
export const Ice = {};
/**
* A version structure for the protocol version.
*/
Ice.ProtocolVersion = class {
constructor(major = 0, minor = 0) {
this.major = major;
this.minor = minor;
}
_write(ostr) {
ostr.writeByte(this.major);
ostr.writeByte(this.minor);
}
_read(istr) {
this.major = istr.readByte();
this.minor = istr.readByte();
}
static get minWireSize() {
return 2;
}
};
// Moved to VersionExtensions.js to avoid circular dependencies.
// defineStruct(ProtocolVersion, true, false);
/**
* A version structure for the encoding version.
*/
Ice.EncodingVersion = class {
constructor(major = 0, minor = 0) {
this.major = major;
this.minor = minor;
}
_write(ostr) {
ostr.writeByte(this.major);
ostr.writeByte(this.minor);
}
_read(istr) {
this.major = istr.readByte();
this.minor = istr.readByte();
}
static get minWireSize() {
return 2;
}
};
// Moved to VersionExtensions.js to avoid circular dependencies.
// defineStruct(EncodingVersion, true, false);
|