Open ketkarameya opened 1 year ago
Upon parsing this expression - !Enum.case.variable , I observed that ! is associated to Enum and not to Enum.case.variable.
!Enum.case.variable
!
Enum
Enum.case.variable
Good find! Let me look into it.
Oh wow! Thanks @alex-pinkus for the quick turn around.
Looks like this will require a more involved fix.
Upon parsing this expression -
!Enum.case.variable
, I observed that!
is associated toEnum
and not toEnum.case.variable
.