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
StringReceiversOverlap
We could add support for the cases like this:
contract C { receive("test") {} receive(msg: String) { let test1: String = ""; test1 = "abc"; test1 = "test"; if (test1 == msg) {} // Bad } }
It would be simpler to implement if we have an SSA IR (or any other IR that makes these assignments more explicit): #74
The text was updated successfully, but these errors were encountered:
No branches or pull requests
We could add support for the cases like this:
It would be simpler to implement if we have an SSA IR (or any other IR that makes these assignments more explicit): #74
The text was updated successfully, but these errors were encountered: