* Set the value * @this {!FieldModelInt64} * @param {!Int64} value Value * @returns {!number} Final model size
(value)
| 3853 | * @returns {!number} Final model size |
| 3854 | */ |
| 3855 | set (value) { |
| 3856 | console.assert(((this._buffer.offset + this.fbeOffset + this.fbeSize) <= this._buffer.size), 'Model is broken!') |
| 3857 | if ((this._buffer.offset + this.fbeOffset + this.fbeSize) > this._buffer.size) { |
| 3858 | return 0 |
| 3859 | } |
| 3860 | |
| 3861 | this.writeInt64(this.fbeOffset, value) |
| 3862 | return this.fbeSize |
| 3863 | } |
| 3864 | } |
| 3865 | |
| 3866 | exports.FinalModelInt64 = FinalModelInt64 |
nothing calls this directly
no test coverage detected