-
-
Notifications
You must be signed in to change notification settings - Fork 45
Open
Description
Hello,
I'm seeking a method to visualize all the classes in my project but also identify dependencies \ relationship. (basically which class calls another.)
Is it possible to achieve this with the tool?
For example, scanning Car.swift will produce something similar to
+-------------------+ +-------------------+ +----------------------+
| Music | <-- | Car | --> | Engine |
+-------------------+ +-------------------+ +----------------------+
| + startMusic() | | + startCar() | | + startEngine() |
+-------------------+ +-------------------+ +----------------------+
class Car {
static func startCar() {
print("Car started")
Engine.startEngine()
Music.startMusic()
}
}
class Music {
static func startMusic() {
print("Music started")
}
}
class Engine {
static func startEngine() {
print("Engine started")
}
}
Metadata
Metadata
Assignees
Labels
No labels