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