* Set the value * @this {!FieldModelFlagsSimple} * @param {!FlagsSimple} value Value
(value)
| 858 | * @param {!FlagsSimple} value Value |
| 859 | */ |
| 860 | set (value) { |
| 861 | console.assert(((this._buffer.offset + this.fbeOffset + this.fbeSize) <= this._buffer.size), 'Model is broken!') |
| 862 | if ((this._buffer.offset + this.fbeOffset + this.fbeSize) > this._buffer.size) { |
| 863 | return |
| 864 | } |
| 865 | |
| 866 | this.writeInt32(this.fbeOffset, value.value) |
| 867 | } |
| 868 | } |
| 869 | |
| 870 | exports.FieldModelFlagsSimple = FieldModelFlagsSimple |
nothing calls this directly
no test coverage detected