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
Currently, concrete updates and reference updates have their own slots both in pspec and bpmn4s. It often happens that a data structure (datatype) has both concrete and reference fields together. This brings unfortunate situations as the following example:
It would be preferable to just define a single update for some_data_store, and just deduce in the back which of the values need to be referenced and which are concrete. Then we could write:
reacted with thumbs up emoji reacted with thumbs down emoji reacted with laugh emoji reacted with hooray emoji reacted with confused emoji reacted with heart emoji reacted with rocket emoji reacted with eyes emoji
Uh oh!
There was an error while loading. Please reload this page.
Currently, concrete updates and reference updates have their own slots both in pspec and bpmn4s. It often happens that a data structure (datatype) has both concrete and reference fields together. This brings unfortunate situations as the following example:
In the concrete update we need to write:
In the references update we need to write:
It would be preferable to just define a single update for some_data_store, and just deduce in the back which of the values need to be referenced and which are concrete. Then we could write:
A single update slot:
All reactions