commands/FBClassDump.py [59:71]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
        ]

    def args(self):
        return [
            fb.FBCommandArgument(
                arg="instance or class",
                type="instance or Class",
                help="an Objective-C Class.",
            )
        ]

    def run(self, arguments, options):
        cls = getClassFromArgument(arguments[0], options.clsname)
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



commands/FBClassDump.py [105:117]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
        ]

    def args(self):
        return [
            fb.FBCommandArgument(
                arg="instance or class",
                type="instance or Class",
                help="an Objective-C Class.",
            )
        ]

    def run(self, arguments, options):
        cls = getClassFromArgument(arguments[0], options.clsname)
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



