36 lines
642 B
Plaintext
36 lines
642 B
Plaintext
== Why is this an issue?
|
|
|
|
include::../description.adoc[]
|
|
|
|
include::../noncompliant.adoc[]
|
|
|
|
include::../compliant.adoc[]
|
|
|
|
=== Exceptions
|
|
|
|
Use of comma operator is tolerated:
|
|
|
|
* in initialization and increment expressions of ``++for++`` loops.
|
|
|
|
[source,javascript]
|
|
----
|
|
for(i = 0, j = 5; i < 6; i++, j++) { ... }
|
|
----
|
|
|
|
* If the expression sequence is explicitly wrapped in parentheses.
|
|
|
|
ifdef::env-github,rspecator-view[]
|
|
|
|
'''
|
|
== Implementation Specification
|
|
(visible only on this page)
|
|
|
|
include::../message.adoc[]
|
|
|
|
'''
|
|
== Comments And Links
|
|
(visible only on this page)
|
|
|
|
include::../comments-and-links.adoc[]
|
|
endif::env-github,rspecator-view[]
|