v1.1.0 - Dynamic return type detection of Enum->getValue() & Enum->getValues()
Added dynamic return type detection for Enum->getValue() & Enum->getValues().
- detect return type of
getValue()/getValues()of an enumeration by defined enumerators- If possible it also detects constant return values
- support union of multiple enumerations
- like the values of a union of
IntEnum|StrEnumwill be a union ofint|string
- like the values of a union of