about summary refs log tree commit diff stats
path: root/sandbox/010-warnings.mu
Commit message (Collapse)AuthorAgeFilesLines
* 2588 - bugfix: show *first* sandbox with errorKartik K. Agaram2016-01-221-0/+2
|
* 2587 - bugfix: show-screen on warningsKartik K. Agaram2016-01-221-1/+0
| | | | See `cannot_write_tests_for`.
* 2586 - show first sandbox with error in statusKartik K. Agaram2016-01-221-7/+54
|
* 2585 - label sandboxes with a numberKartik K. Agaram2016-01-221-3/+3
| | | | | | | | | It also seems useful that the number maps to the name of the file the sandbox is saved in. However this mapping is currently a happy accident and not actually tested. I'm starting to switch gears and help make the editor useable with many many sandboxes. This is just the first step of several.
* 2576 - distinguish allocated addresses from othersKartik K. Agaram2016-01-191-29/+29
| | | | | | | | | | | | | | | | This is the one major refinement on the C programming model I'm planning to introduce in mu. Instead of Rust's menagerie of pointer types and static checking, I want to introduce just one new type, and use it to perform ref-counting at runtime. So far all we're doing is updating new's interface. The actual ref-counting implementation is next. One implication: I might sometimes need duplicate implementations for a recipe with allocated vs vanilla addresses of the same type. So far it seems I can get away with just always passing in allocated addresses; the situations when you want to pass an unallocated address to a recipe should be few and far between.
* 2467 - rename 'string' to 'text' everywhereKartik K. Agaram2015-11-211-2/+2
| | | | | | | | 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.
* 2428 - sandbox/ working againKartik K. Agaram2015-11-121-7/+5
|
* 2309Kartik K. Agaram2015-10-281-7/+7
|
* 2268 - bugfix in 'mu sandbox'Kartik K. Agaram2015-10-091-0/+15
| | | | | We still can't have decent tests in this variant. Thanks Jack and Caleb Couch.
* 2260 - start tracing by depth rather than labelKartik K. Agaram2015-10-061-3/+3
| | | | Now we can collect all traces, just modulating the depth.
* 2240 - drop the failing test in 'mu sandbox'Kartik K. Agaram2015-10-041-45/+1
| | | | | | With our new type checks it's no longer possible to expand traces generated directly in the sandbox. So now there's yet another test that we can't run in the sandbox/ app. Yet.
* 2236 - all tests passing except one in 'mu sandbox'Kartik K. Agaram2015-10-041-6/+8
|
* 2203 - show recipe warnings in 'mu sandbox'Kartik K. Agaram2015-09-151-8/+6
|
* 2183 - environment + external editor using tmuxKartik K. Agaram2015-09-121-0/+203
Thanks Jack and Caleb Couch for the idea.