Skip to content
Open
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
4 changes: 2 additions & 2 deletions kerml/src/main/grammars/de/monticore/lang/KerMLElements.mc4
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@ component grammar KerMLElements
{
DocBlock implements KerMLElement= "doc";

PackageDeclaration implements KerMLElement=
Modifier ("standard")? ("library")? "package" name:MCQualifiedName
symbol scope PackageDeclaration implements KerMLElement=
Modifier ("standard")? ("library")? "package" name:Name
( "{" (KerMLElement)* "}");

KerMLImportStatement extends MCImportStatement implements KerMLElement =
Expand Down
Loading