-
Notifications
You must be signed in to change notification settings - Fork 246
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
String values no longer accessible in debugger #53
Comments
@TedDriggs: are you sure it's alloc::string::String? |
Yes, I'm 100% sure. I'm also now seeing |
Is there a tactical change possible which adds |
It's possible, but I wonder how did |
This is happening to me in the |
What's the compiler version? |
rustc 1.20.0-nightly (445077963 2017-06-20) Where should I run Update: Got confirmation on IRC that this was moved in recent nightlies.
This looks like it will impact everything that was in |
Ah, hm, okay. I guess I'll need to add those aliases then. For now, you can edit |
Fixed in 0.5.3 |
Which OS: macOS 10.12.5
Which LLDB version (lldb -version): lldb-370.0.42 Swift-3.1
Which VSCode version (Help/About):
Which plugin version: 0.5.2
Previously, when on a breakpoint it was possible to see the contents of a string value as a string. Now, instead it shows as
alloc::string::String
, and there's no clear way to access the contents.Expected: Ability to access the string's contents.
The text was updated successfully, but these errors were encountered: