-
Notifications
You must be signed in to change notification settings - Fork 804
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
'vs' command broken? #88
Comments
Thanks for the report! I'll look into this and get back to you, hopefully soon 😜 |
Thank you! I used to use this command a lot to jump between siblings and superviews. It was great. And a lot faster than the built in tree hierarchy view in the debugger :-) |
@palcalde Which version of Xcode are you using? With Xcode 6.2 / lldb-320.4.160, the problem is that the |
@kastiglione I'm using 6.3, tho this command has been broken since last 3/4 months. I think since XCode 6.0. I've created the pull request #92 with a fix, instead of using SBInputReader which as you mention is not accesible anymore I used the standard stdin. I tested it and seems to work fine. Let me know what you think. |
Fixed by #92 |
XCode prints this, anyone knows how to fix it?
Traceback (most recent call last):
File "/usr/local/Cellar/chisel/1.2.0/libexec/fblldb.py", line 81, in runCommand
command.run(args, options)
File "/usr/local/Cellar/chisel/1.2.0/libexec/commands/FBFlickerCommands.py", line 60, in run
walker = FlickerWalker(object)
File "/usr/local/Cellar/chisel/1.2.0/libexec/commands/FBFlickerCommands.py", line 67, in init
self.handler = inputHelpers.FBInputHandler(lldb.debugger, self.inputCallback)
File "/usr/local/Cellar/chisel/1.2.0/libexec/fblldbinputhelpers.py", line 16, in init
self.inputReader = lldb.SBInputReader()
AttributeError: 'module' object has no attribute 'SBInputReader'
The text was updated successfully, but these errors were encountered: