(accessor: (expr: string) => string)
| 78 | } |
| 79 | |
| 80 | read(accessor: (expr: string) => string): string { |
| 81 | const seconds = this.builder.reader.readVarInt64(); |
| 82 | const nanos = this.builder.reader.readInt32(); |
| 83 | return accessor(`Number(${seconds}) * 1000 + ${nanos} / 1000000`); |
| 84 | } |
| 85 | |
| 86 | getFixedSize(): number { |
| 87 | return 7; |
nothing calls this directly
no test coverage detected