Add ImperialCivil Units Schema

- units for civil engineering - ft, ft2, ft3, mph,
  and angles as degrees/minutes/seconds
This commit is contained in:
wandererfan
2018-12-02 11:41:44 -05:00
committed by Yorik van Havre
parent 971cbc4e73
commit fefe83ecbb
12 changed files with 741 additions and 631 deletions

View File

@@ -36,6 +36,7 @@
| unit { QuantResult = $1 ; }
| quantity { QuantResult = $1 ; }
| quantity quantity { QuantResult = $1 + $2; }
| quantity quantity quantity { QuantResult = $1 + $2 + $3; }
;
num: NUM { $$ = $1; }
| ONE { $$ = $1; }