fix(ses,lockdown): make filenames in stacktraces clickable #2747
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.
Staged on #2690
Description
Added two new
stackFiltering:
options'omit-frames'
-- Only omit likely uninteresting frames. Keep original paths.'shorten-paths'
-- Only shorten paths to text likely clickable in an IDEThis fills out the matrix of what should have been orthogonal options.
The existing
'concise'
setting both omits likely uninteresting frames andshortens their paths. The existing
'verbose'
setting does neither.The path shortening caused by either
'concise'
or'shorten-paths'
is also enhanced with two new transformations, in order to make these paths easily and usefully clickable in an IDE like vscode.We would already shorten, for example
to
As of this PR, we would also shorten, for example
to
As of this PR, we would would shorten, for example
to
because the shorter string is a valid relative path, which is therefore usefully clickable.
But we would still not shorten or transform, for example
because three slashes are normally followed by an absolute path, which is therefore usefully clickable.
This PR changes commit-debug.js from
'errorTaming: 'unsafe-debug'
toerrorTaming: 'unsafe'
so that exiting programs whose initialization goes throughcommit-debug.js
can benefit fromstackFiltering:
at all, as well as these new enhancements. TODO but this PR must also fix, by other means, the typescript line number bug that motivated'unsafe-debug'
in the first place. See (TODO link)This PR does not change that all this
stackFiltering:
logic is specific to v8. We should move and generalize this code so that it applies to all relevant JS platforms. TODO at least file an issue for that.Security Considerations
none
Scaling Considerations
none
Documentation Considerations
Wherever we document the
stackFiltering:
rules, we should update those. This PR already updates such documentation within agoric-sdk itself.Testing Considerations
stackFiltering:
is hard to automatically test because there is no specified or portable behavior for the platform-provided stacks. Instead, we just have manual inspection tests, where you run it and visually sanity check the output. I have added such checks for the new options setting and manually sanity checked them.Compatibility Considerations
The only observable change to existing programs is the more aggressive path shortening explained above. I doubt this will cause any compat problems, especially since the platform stack traces are unspecified anyway.
Upgrade Considerations
None.
NEWS.md
for user-facing changes.