* Set the value * @this {!FieldModelEnumInt16} * @param {!EnumInt16} value Value
(value)
| 1268 | * @param {!EnumInt16} value Value |
| 1269 | */ |
| 1270 | set (value) { |
| 1271 | console.assert(((this._buffer.offset + this.fbeOffset + this.fbeSize) <= this._buffer.size), 'Model is broken!') |
| 1272 | if ((this._buffer.offset + this.fbeOffset + this.fbeSize) > this._buffer.size) { |
| 1273 | return |
| 1274 | } |
| 1275 | |
| 1276 | this.writeInt16(this.fbeOffset, value.value) |
| 1277 | } |
| 1278 | } |
| 1279 | |
| 1280 | exports.FieldModelEnumInt16 = FieldModelEnumInt16 |
nothing calls this directly
no test coverage detected