You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The problems is in allEntities(codeString)
The regex /(?(class|struct|protocol|enum))\s+(?!(var|open|public|internal|fileprivate|private|func))(?\w+)(?(<.>)?)(?([^{])?)(?{(?>[^{}]|\g)*})/
return a empty inheritancePart
Generic classes derived from other generic classes do not draw their relationship
Example:
protocol ProtocolF {
associatedtype T
var b1: T? { get }
}
class ClassF<Type,TypeB,TypeC> : ProtocolF {
var b1: Type?
var b2: TypeB?
var b3: TypeC?
}
class ClassG<Type,TypeB,TypeC,TypeD>: ClassF<Type,TypeB,TypeC> {
var b5: Type?
var b6: TypeB?
var b7: TypeC?
var b8: TypeD?
}
The text was updated successfully, but these errors were encountered: