-
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
Add pivars command to FBClassDump.py #173
base: main
Are you sure you want to change the base?
Conversation
Thanks, and sorry for the late reply. This looks good, but I'm also wondering if we should consolidate |
@kastiglione I notice that too. |
Related, a command I came across last week is:
This prints ivars and their offsets, but it also prints methods too, which adds noise if you just want structure information. |
@kastiglione I think we should to merge the pivars, pmethods, pproperties to one command.
if the arg is an instance of some class, it can show the ivar`s value of that instance. But there is more work to decode the struct infomation. |
@longv2go I'm following up on outstanding pull requests. Sorry for the long silence. Note that since this time, a |
pivars
command call theclass_copyIvarList
to get all ivars of an Class and print them out. It would show the offset, type, name and value if need.