ByIgnore reports whether the node is equal because it was ignored. This never reports true if [Result.Equal] reports false.
()
| 455 | // ByIgnore reports whether the node is equal because it was ignored. |
| 456 | // This never reports true if [Result.Equal] reports false. |
| 457 | func (r Result) ByIgnore() bool { |
| 458 | return r.flags&reportByIgnore != 0 |
| 459 | } |
| 460 | |
| 461 | // ByMethod reports whether the Equal method determined equality. |
| 462 | func (r Result) ByMethod() bool { |