Skip to content

Commit

Permalink
fixed sync constraint for later use
Browse files Browse the repository at this point in the history
  • Loading branch information
Josef552 committed Sep 4, 2024
1 parent 6e744d0 commit efee892
Show file tree
Hide file tree
Showing 2 changed files with 1,221 additions and 570 deletions.
4 changes: 2 additions & 2 deletions src/parser/timedAutomata.jison
Original file line number Diff line number Diff line change
Expand Up @@ -134,8 +134,8 @@ syncConstraints
;

syncConstraint
: TOK_ID TOK_AT TOK_ID { $$ = $1 + $2 + $3;}
| TOK_PROCESS TOK_AT TOK_ID TOK_QMARK { $$ = $1 + $2 + $3 + $4;}
: TOK_ID TOK_AT TOK_ID { $$ = {process:$1, event: $3};}
| TOK_ID TOK_AT TOK_ID TOK_QMARK { $$ = {process:$1, event: $3, weakSync: $4};}
;

attributeList
Expand Down
Loading

0 comments on commit efee892

Please sign in to comment.