DerekSelander / dsdump

An improved nm + Objective-C & Swift class-dump

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Nested types get dumped without their Outer type

vukrado opened this issue · comments

It looks like if a type is nested

class ViewController: UIViewController {

}

extension ViewController {
    final class View: UIView {

    }
}

it would list

class ViewController: UIViewController

as well as

class View: UIView

Is there anyway it would be able to retain the outer type

class ViewController.View