Bug1061-CannotMarkMembersAsProtectedInClassDiagram

Using # to indicate protected status of a member or method causing parser error when not used inside class declaration brackets {}.  Removed '#' from `LABEL` regex
This commit is contained in:
Justin Greywolf
2019-11-19 12:18:41 -08:00
committed by Justin Greywolf
parent 3469cfca2f
commit 68c2ea38c9
4 changed files with 22 additions and 4 deletions

View File

@@ -36,7 +36,7 @@
\s*o return 'AGGREGATION';
\-\- return 'LINE';
\.\. return 'DOTTED_LINE';
":"[^#\n;]+ return 'LABEL';
":"[^\n;]+ return 'LABEL';
\- return 'MINUS';
"." return 'DOT';
\+ return 'PLUS';