We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I stumbled across something where unions can extend other unions. Turns out that part of the grammar wasn't fully supported.
union
Here's an example of the broken logic:
TYPE THING EXTENDS THING_BASE: UNION {attribute 'hide' := 'true'} As_THING_BASE : THING_BASE; END_UNION END_TYPE
The text was updated successfully, but these errors were encountered:
engineerjoe440
Successfully merging a pull request may close this issue.
I stumbled across something where
union
s can extend other unions. Turns out that part of the grammar wasn't fully supported.Here's an example of the broken logic:
The text was updated successfully, but these errors were encountered: