(line []byte)
| 134 | } |
| 135 | |
| 136 | func (b2j *B2J) get(line []byte) []int { |
| 137 | _, _, slot, lt := b2j._find(&line) |
| 138 | if lt == lineNORMAL { |
| 139 | return slot |
| 140 | } |
| 141 | return []int{} |
| 142 | } |
| 143 | |
| 144 | func (b2j *B2J) isBJunk(line []byte) bool { |
| 145 | _, _, _, lt := b2j._find(&line) |
no test coverage detected