-
Notifications
You must be signed in to change notification settings - Fork 1.5k
Closed
Labels
Description
We have a problem with comments after elseif/else on same line after upgrade to v2.0 and IMO this is a bug. There is no way how to write comments there correctly. Could you fix it please?
See example:
//comment for if
if (...) {
...
} elseif (...) { //comment for elseif is not allowed
...
} else { //comment for else is not allowed
...
}
Thanks!