C++: Split DataFlow::Node.asExpr into two predicates #774
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
This is my starting point for resolving https://jira.semmle.com/browse/CPP-318 (see also #597 (comment)). I expect we'll have to iterate for a few rounds to reach a compromise that satisfies all use cases, but I think this is better than the status quo.
In the 3rd commit I've implemented the most extreme of the proposals we've discussed on #597, yet it doesn't affect the test results. That means we need better test cases. Can you come up with a realistic test to show that this change leads to too much data flow?
I hope we agree on the following.
DataFlowshould not have to know or worry aboutConversions. They will set sources and sinks to unconverted expressions and expect the library to Do What They Mean.Conversions for sources and sinks.asExpr, which should err on the side of too much data flow.