-
Notifications
You must be signed in to change notification settings - Fork 82
New issue
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
Auxtools debugger #230
Merged
Merged
Auxtools debugger #230
Changes from 30 commits
Commits
Show all changes
31 commits
Select commit
Hold shift + click to select a range
0c6aca0
initial auxtools debug client
willox 8780c94
milestone
willox 953cde5
setting breakpoints
willox 10513e5
breakpoint unsetting
willox c2eaa56
step-in
willox b3148f2
.
willox 21f8786
step in
willox 87a4811
hacky globals
willox f96e433
var reading
willox b22276e
use stack frame id
willox d2a0edf
auxtools exception catching
willox e2b5c8c
enabling/disabling runtime breakpoint works
willox 7fbd044
disconnect messages
willox 8d5526d
threads
willox 9d46ee2
debug console notifications
willox bca1e28
warnings
willox f32291f
move variables refs handling to auxtools
willox fdf0d33
auxtools update
willox 914006e
error handling
willox c8a297a
Merge branch 'master' of https://github.com/SpaceManiac/SpacemanDMM i…
willox 5eed994
env vars and stuff
willox f2f59c8
move dap initialize event
willox 1c77f8f
restore dap_types.rs to old contents
willox bcf731a
restore extools to pre-fmt contents
willox dd7c6ed
restore extools_bundle to pre-fmt contents
willox 4b4d0a0
restore extools_types to pre-fmt contents
willox a5313dc
function breakpoints
willox 5332f66
tabs to spaces
willox 05c4678
better error output when receiving incorrect response
willox cb2c026
pass DebugEngine option instead of dm::Context into Debugger:new
willox 7eb3d8c
Revert dm-langserver name, fix up some whitespace
SpaceManiac File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
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.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
this was changed to avoid a rust bug where symbols are not generated (at least on Windows with MSVC) if a dash is in the name
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
is there an upstream ticket?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
for this specific issue idk, it was a problem before but got 'fixed'.
rust-lang/cargo#8123
perhaps it was only fixed when there was no
[[bin]].name
override.There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I will probably revert this in the name of not having to modify my deploy scripts, but I suggest filing an up-to-date report upstream
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
That's fine. It's more that I forgot to remove it first, but it was worth pointing out anyway.