bykof / go-plantuml

Generate plantuml diagrams from go source files or directories
MIT License
388 stars 27 forks source link

Handle cases where class is not found #9

Closed joonas closed 2 years ago

joonas commented 2 years ago

This addresses the case where a function is associated with an ast.ArrayType as is the case with the functions associated with domain.Classes.

While I didn't add a test for it, it's easy enough to replicate by running the following at the root of this repository:

go install . && go-plantuml generate -r

Closes #7