MarkerOnly reports whether it is okay to print only the marker for a given change, omitting the identifying information. MarkerOnly returns true when bisect is using the printed reports only for an intermediate search step, not for showing to users.
()
| 342 | // MarkerOnly returns true when bisect is using the printed reports |
| 343 | // only for an intermediate search step, not for showing to users. |
| 344 | func (m *Matcher) MarkerOnly() bool { |
| 345 | return !m.verbose |
| 346 | } |
| 347 | |
| 348 | // ShouldEnable reports whether the change with the given id should be enabled. |
| 349 | func (m *Matcher) ShouldEnable(id uint64) bool { |