hevm: tty: skip null src maps when jumping with shift+n #832
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.
Description
I think this fixes #686, but since the source map format and parser are very mysterious to me I'm not really sure that I've done the right thing.
Afaict the issue was that we sometimes get a sourcemap back from
currentPosition
that looks like this:Which is treated as distinct by the check in
isNextSourcePosition
. I'm assuming the-1
in this case is a sentinel value meaning the given source pc does not have a corresponding position in the provided source map? Perhaps there is a cleaner fix here where we make this position unrepresentable? @MrChico thoughts?cc @transmissions11 for testing.
Checklist