Skip to content

Commit 2ecea07

Browse files
committed
ST6RI-830 Added global name qualifier to the KerMLExpression grammar
1 parent 1a1bc40 commit 2ecea07

1 file changed

Lines changed: 5 additions & 1 deletion

File tree

org.omg.kerml.expressions.xtext/src/org/omg/kerml/expressions/xtext/KerMLExpressions.xtext

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -524,12 +524,16 @@ Name:
524524
ID | UNRESTRICTED_NAME
525525
;
526526

527+
GlobalQualification :
528+
'$' '::'
529+
;
530+
527531
Qualification :
528532
( Name '::' )+
529533
;
530534

531535
QualifiedName:
532-
Qualification? Name
536+
GlobalQualification? Qualification? Name
533537
;
534538

535539
/* TERMINALS */

0 commit comments

Comments
 (0)