e0bfa18c7c
In the codebase, we have several different interfaces for equality instance methods on a type T: - bool Equals(const T&) const; - bool Equals(const T*) const; - bool Equals(T*) const; This CL standardizes on `bool Equals(const T&) const;`, and adjusts any related functions to match. TEST=Existing test suites, as this is an internal refactoring. Cq-Include-Trybots: luci.dart.try:vm-kernel-precomp-linux-debug-x64-try Change-Id: I2ebcf2b861732ce65c6f1c673b2df2a2c7f5dd4d Reviewed-on: https://dart-review.googlesource.com/c/sdk/+/195071 Reviewed-by: Daco Harkes <dacoharkes@google.com> Commit-Queue: Tess Strickland <sstrickl@google.com>