Skip to content

Better type parsing

Compare
Choose a tag to compare
@Enteee Enteee released this 12 Apr 18:34
· 15 commits to master since this release
9fd1944

Types after names separated by a ":" are not properly parsed.

@startuml
!theme plain
class Publication {
  title : String
}
@enduml
[
  {
    "elements": [
      {
        "name": "Publication",
        "title": "Publication",
        "isAbstract": false,
        "members": [
          {
            "name": "title",
            "isStatic": false,
            "accessor": "+",
            "type": "String"
          }
        ],
        "extends_": [],
        "implements_": [],
        "generics": [],
        "stereotypes": []
      }
    ]
  }
]