DerekSelander / dsdump

An improved nm + Objective-C & Swift class-dump
1.12k stars 111 forks source link

Nested types get dumped without their Outer type #12

Open vukrado opened 4 years ago

vukrado commented 4 years ago

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