You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
finalvarcode = "/** A is a simple class */ class A { }";
Running Qulice on this code results in This kind of comment is not allowed. (RegexpSinglelineCheck). The RegexpSinglelineCheck matches the comment inside the String literal, even though it is not a real comment.
I think the regex should be altered to not match on comments inside String literals.
The text was updated successfully, but these errors were encountered:
@korthout/z this project will fix the problem faster if you donate a few dollars to it; just click here and pay via Stripe, it's very fast, convenient and appreciated; thanks a lot!
Consider the following code:
Running Qulice on this code results in
This kind of comment is not allowed. (RegexpSinglelineCheck)
. TheRegexpSinglelineCheck
matches the comment inside the String literal, even though it is not a real comment.I think the regex should be altered to not match on comments inside String literals.
The text was updated successfully, but these errors were encountered: