about summary refs log tree commit diff stats
path: root/edit/009-sandbox-trace.mu
Commit message (Collapse)AuthorAgeFilesLines
* 2735 - define recipes using 'def'Kartik K. Agaram2016-03-081-5/+5
| | | | | | | | | | | | I'm dropping all mention of 'recipe' terminology from the Readme. That way I hope to avoid further bike-shedding discussions while I very slowly decide on the right terminology with my students. I could be smarter in my error messages and use 'recipe' when code uses it and 'function' otherwise. But what about other words like ingredient? It would all add complexity that I'm not yet sure is worthwhile. But I do want separate experiences for veteran programmers reading about Mu on github and for people learning programming using Mu.
* 2590 - support scrolling through sandboxesKartik K. Agaram2016-01-221-1/+1
|
* 2586 - show first sandbox with error in statusKartik K. Agaram2016-01-221-1/+1
|
* 2585 - label sandboxes with a numberKartik K. Agaram2016-01-221-5/+5
| | | | | | | | | 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-24/+24
| | | | | | | | | | | | | | | | 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.
* 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
b/ui/tab.go?h=0.4.0&id=3a5b4c229e42c14b1389cd985506d09b3f17388b'>^
e42b95a ^
92b10fc ^
e42b95a ^


92b10fc ^

e42b95a ^
92b10fc ^











207ecc3 ^
92b10fc ^






3b09c07 ^












5b2e3a0 ^



84965d6 ^
5b2e3a0 ^
84965d6 ^
5b2e3a0 ^
2c486cb ^

5b2e3a0 ^
84965d6 ^
80e891a ^
5b2e3a0 ^











3b09c07 ^














a0c2b1c ^







5b2e3a0 ^
2f5c1db ^





5b2e3a0 ^







dc90be2 ^

5b2e3a0 ^




1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226