about summary refs log tree commit diff stats
path: root/095stack.subx
Commit message (Collapse)AuthorAgeFilesLines
* 5887 - reorganize libraryKartik Agaram2020-01-141-413/+0
| | | | | | | Layers 0-89 are used in self-hosting SubX. Layers 90-99 are not needed for self-hosting SubX, and therefore could use transitional levels of syntax sugar. Layers 100 and up use all SubX syntax sugar.
* 5876 - address -> addrKartik Agaram2020-01-031-6/+6
|
* 5804Kartik Agaram2019-12-081-6/+6
| | | | | Try to make the comments consistent with the type system we'll eventually have.
* 5698Kartik Agaram2019-10-151-16/+16
| | | | Thanks Andrew Owen for reporting this typo.
* 5687Kartik Agaram2019-09-231-0/+413
Move stack operations to a layer of their own. It was some short-term pain to take out the syntax sugar from it, but we need access to this layer from braces, which can't depend on sugar since it's part of sugar. Just simpler to keep one clear line and not have to build sometimes with some sugar but not others.