reaktivity / nukleus-maven-plugin

Nukleus Maven Plugin
Apache License 2.0
0 stars 10 forks source link

Support relative type references for union #105

Open jfallows opened 4 years ago

jfallows commented 4 years ago
scope outer
{
    struct OuterStruct
    {
    }

    scope inner
    {
        union InnerUnion
        {
            OuterStruct outerRef;
        }
    }
}

Today, we must use fully qualified type reference outer::OuterStruct instead for union field types only, other types already supported by #79.