* Set the value * @this {!FieldModelWChar} * @param {!string} value Value
(value)
| 1281 | * @param {!string} value Value |
| 1282 | */ |
| 1283 | set (value) { |
| 1284 | console.assert(((this._buffer.offset + this.fbeOffset + this.fbeSize) <= this._buffer.size), 'Model is broken!') |
| 1285 | if ((this._buffer.offset + this.fbeOffset + this.fbeSize) > this._buffer.size) { |
| 1286 | return |
| 1287 | } |
| 1288 | |
| 1289 | this.writeWChar(this.fbeOffset, value) |
| 1290 | } |
| 1291 | } |
| 1292 | |
| 1293 | exports.FieldModelWChar = FieldModelWChar |
nothing calls this directly
no test coverage detected