about summary refs log tree commit diff stats
path: root/edit/009-sandbox-trace.mu
Commit message (Collapse)AuthorAgeFilesLines
* 2548 - teach 'print' to print integersKartik K. Agaram2015-12-281-2/+3
| | | | | | | | | | Still can't print non-integer numbers, so this is a bit hacky. The big consequence is that you can't print literal characters anymore because of our rules about how we pick which variant to statically dispatch to. You have to save to a character variable first. Maybe I can add an annotation to literals..
* 2468 - overload print-character as just 'print'Kartik K. Agaram2015-11-211-2/+2
|
* 2467 - rename 'string' to 'text' everywhereKartik K. Agaram2015-11-211-1/+1
| | | | | | | | Not entirely happy with this. Maybe we'll find a better name. But at least it's an improvement. One part I *am* happy with is renaming string-replace to replace, string-append to append, etc. Overdue, now that we have static dispatch.
* 2417 - support mutable ingredients in headersKartik K. Agaram2015-11-101-3/+3
| | | | | | If a name repeats between ingredients, we raise an error. If a name repeats across ingredients and products, every call should share the same name across the corresponding ingredients and products.
* 2375 - layer 9 doneKartik K. Agaram2015-11-051-6/+5
|
* 2309Kartik K. Agaram2015-10-281-9/+9
|
* 2260 - start tracing by depth rather than labelKartik K. Agaram2015-10-061-2/+2
| | | | Now we can collect all traces, just modulating the depth.
* 2183 - environment + external editor using tmuxKartik K. Agaram2015-09-121-4/+4
| | | | Thanks Jack and Caleb Couch for the idea.
* 2180 - render the trace even if there's warningsKartik K. Agaram2015-09-101-0/+1
|
* 2167Kartik K. Agaram2015-09-051-0/+16
|
* 2163Kartik K. Agaram2015-09-051-2/+1
| | | | | | | | `render-string` (and `render-code-string`; ugh) should start a new line after, not before, like everybody else. I've been meaning to fix this for a long time, but now I have to, to move the warnings fields out of early layers.
* 2160Kartik K. Agaram2015-09-051-0/+194