rspec/rules/S1764/vbnet/rule.adoc

49 lines
1.0 KiB
Plaintext

== Why is this an issue?
Using the same value on either side of a binary operator is almost always a mistake. In the case of logical operators, it is either a copy/paste error and therefore a bug, or it is simply wasted code, and should be simplified. In the case of most binary mathematical operators, having the same value on both sides of an operator yields predictable results, and should be simplified.
This rule ignores ``++*++``, ``+``, ``++&++``, ``++<<++``, and ``++>>++``.
=== Noncompliant code example
[source,vbnet]
----
If (a = a) Then
doZ()
End If
If a = b OrElse a = b Then
doW()
End If
Dim j = 5 / 5
j = 5 \ 5
j = 5 Mod 5
Dim k = 5 - 5
Dim i = 42
i /= i
i -= i
----
include::../exceptions.adoc[]
include::../see.adoc[]
ifdef::env-github,rspecator-view[]
'''
== Implementation Specification
(visible only on this page)
include::../message.adoc[]
include::../highlighting.adoc[]
'''
== Comments And Links
(visible only on this page)
include::../comments-and-links.adoc[]
endif::env-github,rspecator-view[]