ST6RI-893 KerML grammar does not allow constant end features by seidewitz · Pull Request #716 · Systems-Modeling/SysML-v2-Pilot-Implementation
This PR corrects the KerML grammar as implemented, to allow association structures to have ends marked with const as constant variable features (per the KerML Specification, 8.2.4.3.1). For example, the following model previously did not parse, but, with this correction, it does:
assoc struct Test {
const end feature a;
const end feature b;
}