* Write wide char value into the field model buffer * @this {!FieldModelBase} * @param {!number} offset Offset * @param {!string} value Wide char value
(offset, value)
| 877 | * @param {!string} value Wide char value |
| 878 | */ |
| 879 | writeWChar (offset, value) { |
| 880 | let code = value.charCodeAt(0) |
| 881 | this.writeUInt32(offset, code) |
| 882 | } |
| 883 | |
| 884 | /** |
| 885 | * Write Int8 value into the field model buffer |
no test coverage detected