We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Here are just a few I can come up with:
a = #ERROR{ "any" } 'unreachable' b = [a-z]<0, 1, 'unreachable'> c = '' / 'unreachable' d = &!!&!!&&&!&!&'' 'unreachable' e = ""<100> #ERROR{ "any" } / 'unreachable'
Note that it is impossible to solve this problem completely:
a = !{ true } 'unreachable'
So, we are only trying to detect provably unreachable expressions.
Detecting something like these would eventually be nice, but will not be included in the first version of the feature:
a = !'a' 'a' 'unreachable' b = ![a-z] 'a' 'unreachable'
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Here are just a few I can come up with:
Note that it is impossible to solve this problem completely:
So, we are only trying to detect provably unreachable expressions.
Detecting something like these would eventually be nice, but will not be included in the first version of the feature:
The text was updated successfully, but these errors were encountered: