summaryrefslogtreecommitdiff
path: root/src/grammar.lalrpop (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Use BTreeMaps to keep records and unions sortedNanoTech2017-03-101-4/+4
|
* Seperate built-in types and functions from ExprNanoTech2017-03-101-2/+3
|
* Replace Cow<'i, str> with &'i str in ExprNanoTech2017-03-101-4/+3
| | | | Cow::Owned is never used in Expr
* Begin implementing type checkingNanoTech2017-03-101-0/+1
|
* Reference input strings without copyingNanoTech2017-03-101-24/+25
|
* Parse string literalsNanoTech2017-03-101-0/+2
|
* Parse Const, lists, and recordsNanoTech2017-03-101-1/+56
| | | | Also fix keyword parsing to always consume whole identifiers.
* Parse builtins correctlyNanoTech2017-03-101-1/+1
|
* Separate keywords and builtinsNanoTech2017-03-101-8/+8
|
* Add more ExprB rulesNanoTech2017-03-101-2/+11
|
* Initial commitNanoTech2017-03-101-0/+94