* Set the value * @this {!FieldModelUInt64} * @param {!UInt64} value Value
(value)
| 1633 | * @param {!UInt64} value Value |
| 1634 | */ |
| 1635 | set (value) { |
| 1636 | console.assert(((this._buffer.offset + this.fbeOffset + this.fbeSize) <= this._buffer.size), 'Model is broken!') |
| 1637 | if ((this._buffer.offset + this.fbeOffset + this.fbeSize) > this._buffer.size) { |
| 1638 | return |
| 1639 | } |
| 1640 | |
| 1641 | this.writeUInt64(this.fbeOffset, value) |
| 1642 | } |
| 1643 | } |
| 1644 | |
| 1645 | exports.FieldModelUInt64 = FieldModelUInt64 |
nothing calls this directly
no test coverage detected