├── .gitignore ├── DebugView.playground ├── Contents.swift ├── Sources │ ├── DebugView.swift │ ├── Graphviz.swift │ └── Utils.swift ├── contents.xcplayground ├── playground.xcworkspace │ └── contents.xcworkspacedata └── timeline.xctimeline ├── Demo.gif └── README.md /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomquist/DebugView/HEAD/.gitignore -------------------------------------------------------------------------------- /DebugView.playground/Contents.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomquist/DebugView/HEAD/DebugView.playground/Contents.swift -------------------------------------------------------------------------------- /DebugView.playground/Sources/DebugView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomquist/DebugView/HEAD/DebugView.playground/Sources/DebugView.swift -------------------------------------------------------------------------------- /DebugView.playground/Sources/Graphviz.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomquist/DebugView/HEAD/DebugView.playground/Sources/Graphviz.swift -------------------------------------------------------------------------------- /DebugView.playground/Sources/Utils.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomquist/DebugView/HEAD/DebugView.playground/Sources/Utils.swift -------------------------------------------------------------------------------- /DebugView.playground/contents.xcplayground: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomquist/DebugView/HEAD/DebugView.playground/contents.xcplayground -------------------------------------------------------------------------------- /DebugView.playground/playground.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomquist/DebugView/HEAD/DebugView.playground/playground.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /DebugView.playground/timeline.xctimeline: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomquist/DebugView/HEAD/DebugView.playground/timeline.xctimeline -------------------------------------------------------------------------------- /Demo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomquist/DebugView/HEAD/Demo.gif -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomquist/DebugView/HEAD/README.md --------------------------------------------------------------------------------