We must implement CSharpSyntaxRewriter.VisitOperatorDeclaration to handle operators.
public class Car : System.IEquatable<Car>
{
///...
public static bool operator ==(Car lhs, Car rhs) { } // => { throw null; }
public static bool operator !=(Car lhs, Car rhs) { } // => { throw null; }
}