Skip to content
  • Maxime Perrotin's avatar
    Fix parsing the queue size · e33cfc8d
    Maxime Perrotin authored
    For some reason a single method can not be used to parse the properties
    of an interface if it is declared at different places
    
    Ellidiss'interface view define the queue size like this:
    SUBPROGRAM PI_doSomething
    PROPERTIES
      Taste::Associated_Queue_Size => 5;
    END PI_doSomething;
    
    while Space Creator defines it like this:
    FEATURES
       PI_doSomething : PROVIDES SUBPROGRAM ACCESS interfaceview::IV:: Blah:: PI_doSomething.others {
          Taste::Associated_Queue_Size => 5;
       }
    
    It seems the same but no..The first one does not appear in the list of
    properties of the interface and requires a weird method to parse it.
    e33cfc8d