(writer, value)
| 11 | return null; |
| 12 | } |
| 13 | encode(writer, value) { |
| 14 | if (value != null) { |
| 15 | this._throwError("not null", value); |
| 16 | } |
| 17 | return writer.writeBytes(Empty); |
| 18 | } |
| 19 | decode(reader) { |
| 20 | reader.readBytes(0); |
| 21 | return null; |
nothing calls this directly
no test coverage detected