(line []byte)
| 58 | type lineHash uint32 |
| 59 | |
| 60 | func _hash(line []byte) lineHash { |
| 61 | return lineHash(adler32.Checksum(line)) |
| 62 | } |
| 63 | |
| 64 | // B2J is essentially a map from lines to line numbers, so that later it can |
| 65 | // be made a bit cleverer than the standard map in that it will not need to |
no test coverage detected