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