(other: ElementInfo | null)
| 45 | ) {} |
| 46 | |
| 47 | equalTo(other: ElementInfo | null) { |
| 48 | if (other === null) { |
| 49 | return false; |
| 50 | } |
| 51 | return ( |
| 52 | this.serializer === other.serializer |
| 53 | && this.isNull === other.isNull |
| 54 | && this.trackRef === other.trackRef |
| 55 | ); |
| 56 | } |
| 57 | } |
| 58 | |
| 59 | class MapChunkWriter { |