Skip to content
  • Maxime Perrotin's avatar
    update version number · 3816ea06
    Maxime Perrotin authored
    this version adds basic support for the newtype construct, allowing to
    define internal types using the SDL syntax.
    only support definition of array types:
    newtype MyType
    array (SomeInteger, SomeType)
    endnewtype;
    this will be transformed into:
    MyType ::= SEQUENCE (SIZE (minOfSomeInteger .. maxOfSomeInteger)) OF
    SomeType
    3816ea06