36 lines
642 B
Plaintext
Raw Normal View History

== Why is this an issue?
2020-06-30 12:50:59 +02:00
include::../description.adoc[]
include::../noncompliant.adoc[]
include::../compliant.adoc[]
=== Exceptions
2020-06-30 12:50:59 +02:00
Use of comma operator is tolerated:
2021-01-27 13:42:22 +01:00
* in initialization and increment expressions of ``++for++`` loops.
[source,javascript]
2020-06-30 12:50:59 +02:00
----
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[]