Skip to content
New issue

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

Allow parentheses surrounding ConditionalCommunications in ProcessBehaviourSequence #975

Open
GunnarMorrigan opened this issue Mar 23, 2022 · 0 comments

Comments

@GunnarMorrigan
Copy link

Currently their are no brackets allowed surrounding a ConditionalCommunications per

ProcessBehaviourSequence:
    ConditionalCommunications ( '>->' ProcessBehaviourLevel4 )?
;

Would be nice if this was changed for clearer and easier writing and reading of PROCDEFs.
Suggested change:

ProcessBehaviourSequence:
    ConditionalCommunications ( '>->' ProcessBehaviourLevel4 )?
    | '(' ConditionalCommunications ')' ( '>->' ProcessBehaviourLevel4 )?
;

This would allow the following:
image
while also still allowing no brackets:

PROCDEF example [In :: Int; Out :: Int] () ::=
    (
            In ? op | Out ? t1 [[ True ]]
        >->
            Out ! 2
    )
ENDDEF
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant