-
Notifications
You must be signed in to change notification settings - Fork 3
Open
Labels
bugSomething isn't workingSomething isn't working
Description
After run .build/debug/SwiftDiagramGenerator . ….., some of my swift class will show「Can’t parse file path:XXXXX」and the diagram is not created.
Here is my NG sample class:
class TestUML: NSObject {
@IBOutlet weak private var button: UIButton!
var testVar: String?;
func function1() -> Bool {
return true;
}
}
BUT、if I remove the third line and excute the command line again、diagram will be created without error.
// OK Sample class
class TestUML: NSObject {
@IBOutlet weak private var button: UIButton!
func function1() -> Bool {
return true;
}
}
Metadata
Metadata
Assignees
Labels
bugSomething isn't workingSomething isn't working