Merge branch 'develop' into knsv/mindmap-refactoring

This commit is contained in:
darshanr0107
2025-08-13 14:07:02 +05:30
committed by GitHub
56 changed files with 1157 additions and 432 deletions

View File

@@ -12,5 +12,9 @@ entry Pie:
;
PieSection:
label=STRING ":" value=NUMBER EOL
label=STRING ":" value=NUMBER_PIE EOL
;
terminal FLOAT_PIE returns number: /-?[0-9]+\.[0-9]+(?!\.)/;
terminal INT_PIE returns number: /-?(0|[1-9][0-9]*)(?!\.)/;
terminal NUMBER_PIE returns number: FLOAT_PIE | INT_PIE;