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
Thank you for developing an interesting project , and sorry for this minor edge case issue.
The syntax file below generates ‘EndTransition’ twice, so
syntax helloDSL (start) { simpleHello : start -> "begin" helloWithName : start -> "end" name nameString : name -> "name(String)" }
I checked the error below using haskell
[1 of 2] Compiling HelloDSL ( HelloDSL.hs, HelloDSL.o ) HelloDSL.hs:49:1: error: Multiple declarations of ‘EndTransition’ Declared at: HelloDSL.hs:46:1 HelloDSL.hs:49:1 HelloDSL.hs:50:3: error: Multiple declarations of ‘end’ Declared at: HelloDSL.hs:47:3 HelloDSL.hs:50:3
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Thank you for developing an interesting project , and sorry for this minor edge case issue.
The syntax file below generates ‘EndTransition’ twice, so
or
is needed.
I checked the error below using haskell
The text was updated successfully, but these errors were encountered: