Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -25,4 +25,4 @@ assertj_version = 3.21.0
junit_version = 5.8.2

# Version of published artifacts
version = 7.8.79
version = 7.8.80
8 changes: 0 additions & 8 deletions language/src/main/grammars/de/monticore/lang/SysMLBasis.mc4
Original file line number Diff line number Diff line change
Expand Up @@ -74,14 +74,6 @@ component grammar SysMLBasis
SysMLRedefinition implements Specialization =
(":>>" | "redefines") superTypes:(MCType || ",")+ SysMLCardinality?;

/**
* [An event occurence] is related to another occurrence usage,
* representing the occurring event, by a reference subsetting relationship, which is a special kind of subsetting
* relationship specified using the keyword references or the symbol ::>.
*/
SysMLReference implements Specialization =
("::>" | "references") superTypes:(MCType || ",")+ SysMLCardinality?;

/**
* Cardinality bei mehreren Typen macht wenig Sinn, aber die Grammatik und damit der AST werden sehr kompliziert, wenn
* man versucht alle Eventualitäten durch die Grammatik abzudecken.
Expand Down
8 changes: 8 additions & 0 deletions language/src/main/grammars/de/monticore/lang/SysMLv2.mc4
Original file line number Diff line number Diff line change
Expand Up @@ -71,4 +71,12 @@ grammar SysMLv2 extends SysMLExpressions,
SysMLElement*
"}" | ";");

/**
* [An event occurence] is related to another occurrence usage,
* representing the occurring event, by a reference subsetting relationship, which is a special kind of subsetting
* relationship specified using the keyword references or the symbol ::>.
*/
SysMLReference implements Specialization =
("::>" | "references") superTypes:(MCType || ",")+ SysMLCardinality?;

}