Interactive: fix expression locations #717
Merged
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.
Closes #689.
This is only a problem on
interactivedue to #533 only being there.The ideal solution would be to have
UpdateCilalso update expression locations (not just one location for each statement), but that requires a lot more work to distinguish the statements/instructions and store multiple locations for some.Also, since there's no way to identify specific CFG edges (unlike nodes, which have IDs from either statements or the function), there's no easy way to just update the edge locations incrementally either. PR #689 and this make edge locations largely redundant (at least for messages, maybe something uses them non-incrementally directly).
Therefore this PR just contains a refinement of @vesalvojdani's original fix: simply use expression locations for everything.
This makes it impossible to get and warn about an entire
if/while/switchstatement, rather than just its expression, but I don't remember any case where we want to do that. If that turns up, a more involved fix is necessary to distinguish the two.