You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This issue can be demonstrated using the following class:
class Entry
operations
public static Run : () ==> ?
Run () ==
|| (return true, return true);
end Entry
When code-generated, the generated code contains both return statements, which is wrong (and it won't compile). Instead it should just choose one of them.
The text was updated successfully, but these errors were encountered:
peterwvj
changed the title
Java code-generator does not handle the non deterministic statement correctly
Java code-generator does not handle the nondeterministic statement correctly
Oct 11, 2017
This issue can be demonstrated using the following class:
When code-generated, the generated code contains both
return
statements, which is wrong (and it won't compile). Instead it should just choose one of them.The text was updated successfully, but these errors were encountered: