about summary refs log tree commit diff stats
path: root/sandbox/008-sandbox-test.mu
Commit message (Collapse)AuthorAgeFilesLines
* 2590 - support scrolling through sandboxesKartik K. Agaram2016-01-221-1/+1
|
* 2576 - distinguish allocated addresses from othersKartik K. Agaram2016-01-191-9/+9
| | | | | | | | | | | | | | | | 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.
* 2474 - overload 'copy' and 'equal' for textKartik K. Agaram2015-11-221-1/+1
| | | | 2473 was the final bugfix holding this back.
* 2467 - rename 'string' to 'text' everywhereKartik K. Agaram2015-11-211-3/+3
| | | | | | | | 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-6/+4
|
* 2183 - environment + external editor using tmuxKartik K. Agaram2015-09-121-0/+94
Thanks Jack and Caleb Couch for the idea.