181 B
181 B
Prevents the use of /* C-style */
comments inside methods.
Valid:
void doSomething() {
// a comment
}
Invalid:
void doSomething() {
/* invalid */
}