» To Project

Detection loops when moving feature to end of feature list

Acoda #18 - Error (by Sander Vermolen on Jul 26)

The detection loops when a feature is moved to the end of an entity's feature list. For example:

    entity A {
       a :: String
       b :: String
       c :: String
    }

to:

    entity A {
       b :: String
       c :: String
       a :: String
    }

It is most probably the high-level detection which loops as this worked fine before.

Log in to post comments