about summary refs log tree commit diff stats
path: root/sandbox
Commit message (Collapse)AuthorAgeFilesLines
* 2928 - fix sandbox restore in edit/ and sandbox/Kartik K. Agaram2016-05-051-3/+7
| | | | | This had been broken ever since 2854, because we can't write tests for restore-snapshots at the moment.
* 2926Kartik K. Agaram2016-05-051-2/+4
| | | | Typo introduced in 2854.
* 2890Kartik K. Agaram2016-05-021-1/+1
|
* 2864 - replace all address:shared with just addressKartik K. Agaram2016-04-2411-1262/+1262
| | | | | | | Now that we no longer have non-shared addresses, we can just always track refcounts for all addresses. Phew!
* 2861 - 'maybe-convert' no longer returns addressKartik K. Agaram2016-04-239-121/+125
|
* 2854 - purge get-address from sandbox/ appKartik K. Agaram2016-04-2211-589/+644
|
* 2806 - bugfix: cleaning up in 'reload'Kartik K. Agaram2016-03-211-1/+1
| | | | | | | | | | | | | | | This brings back some of the complexity I thought I'd gotten rid of in 2799. The regression brought home the point that I'd forgotten to write tests for those bits. Written now. It also brought home the point that our cleanup in 'reload' has always been hacky and incomplete. It's also ugly that those tests in the sandbox/ and edit/ apps need changing (particularly when the test is about how the output doesn't change).
* 2805Kartik K. Agaram2016-03-211-4/+4
| | | | Fix test failures caused by 2804 in sandbox/ app.
* 2782 - directly use string literals everywhereKartik K. Agaram2016-03-144-20/+10
|
* 2781Kartik K. Agaram2016-03-141-3/+4
|
* 2735 - define recipes using 'def'Kartik K. Agaram2016-03-0811-182/+182
| | | | | | | | | | | | 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.
* 2714 - apply 2604 to sandbox/Kartik K. Agaram2016-02-261-1/+1
|
* 2707Kartik K. Agaram2016-02-253-7/+0
|
* 2705 - eradicate 'warning' from appsKartik K. Agaram2016-02-251-52/+52
|
* 2661 - warn if a reply doesn't match recipe headerKartik K. Agaram2016-02-151-1/+2
| | | | | | | | Thanks Nicolas Léveillé for running up against this bug: https://news.ycombinator.com/item?id=11094837 (Also noticed and fixed several subsidiary issues. This whole aspect doesn't seem fully baked yet.)
* 2624Kartik K. Agaram2016-02-012-15/+23
| | | | Reorganize further to make edit/008-sandbox-test more self-contained.
* 2623 - bugfix: editing sandboxesKartik K. Agaram2016-02-013-6/+17
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | If you restore 2 sandboxes, the first render was setting response-starting-row-on-screen on both, without ever rendering a response. If the lower sandbox contained a print and rendered the screen instead of the response, the original response-starting-row-on-screen was never reset. If the process of running the sandboxes caused the lower sandbox's title bar to move below the now-stale response-starting-row-on-screen[1], editing the lower sandbox no longer works. [1] (Either because the upper sandbox prints to screen as well (causing the first F4 to move the lower sandbox down by several lines), or because a fresh sandbox is created with several lines before the first F4 is hit.) Current solution: never set response-starting-row-on-screen during reload (or otherwise when there's no response). This is hard to test right now because 'restore' is not a tested interface, and I can't come up with another situation where the response-starting-row-on-screen goes stale. So I'm now trying to keep all changes to response-starting-row-on-screen close together. Another idea is to add a check that the click row lies below the response-starting row *and* above the start of the next sandbox. (But what if there's no next sandbox?) (This bug is really a regression, introduced last Sep in 2163.)
* 2622 - bugfix: left-arrowKartik K. Agaram2016-01-311-3/+78
| | | | Moving back to wrapped line was overflowing the right margin.
* 2612 - sandbox/ tests always show recipe errorsKartik K. Agaram2016-01-282-18/+39
| | | | | I spent the longest time trying to understand what bug 2268 fixed. But it's being tested now.
* 2610 - warn when recipes don't use default-spaceKartik K. Agaram2016-01-272-0/+4
| | | | Somehow this never transferred over from the Arc version until now.
* 2609 - reuse test-recipe variables in sandbox/ testsKartik K. Agaram2016-01-272-4/+5
| | | | | | | | I'd feared that the refcount errors in the previous commit meant there was a bug in my ref-counting, so I temporarily used new variables rather than reusing existing ones. But it turns out the one remaining place memory corruption can happen is when recipes don't use default-scope and so end up sharing memory. Don't I have a warning for this?
* 2608 - fix-up tests in sandbox/ appKartik K. Agaram2016-01-275-55/+674
| | | | | | | | | | When I first forked it from the edit/ app, I wasn't sure how to deal with changing the recipe side when the only way the program accesses it is with the untestable 'restore' hack. Now we introduce a little hook into event-loop and pass in any updated recipe side directly. In the process I've cleaned up several minor stylistic inconsistencies between edit/ and sandbox/ apps.
* 2597Kartik K. Agaram2016-01-231-0/+3
| | | | Finish 2595.
* 2594 - bugfixes: managing state when deletingKartik K. Agaram2016-01-233-94/+309
| | | | This required completely redesigning scrolling.
* 2593 - bugfix: editing a sandbox resets scrollKartik K. Agaram2016-01-221-0/+54
|
* 2592 - bugfix: sandbox title bar managementKartik K. Agaram2016-01-221-1/+84
|
* 2591Kartik K. Agaram2016-01-221-1/+7
|
* 2590 - support scrolling through sandboxesKartik K. Agaram2016-01-227-13/+354
|
* 2589 - tweak color for sandbox labelsKartik K. Agaram2016-01-221-2/+2
| | | | | | | | | | | | | | | | | | | | I'm now thinking about how to support scrolling on the sandbox side. Caleb's idea is to use down-arrow inside the sandbox editor, and then "scroll off" the editor to the top of each successive sandbox. I think I'll reserve the white background as the cursor color in that situation. I wonder if I should just undo all the support for sandbox labels since yesterday. Labels are perhaps superfluous once I support scrolling and reorder sandboxes to always throw ones with errors up top. But then you can end up scrolling through lots of tests without any sense of how far down you are. So the other approach is to keep labels and try to keep them stable, not reorder them. Looking further ahead I'm going to need a way to jump to a specific sandbox. Maybe instead of reordering sandboxes I should just automatically render from the first sandbox with error. Maybe show the number of failed sandboxes in the status instead of the index of the first failure.
* 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-224-13/+67
|
* 2585 - label sandboxes with a numberKartik K. Agaram2016-01-225-20/+29
| | | | | | | | | 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.
* 2580 - check product type of 'maybe-convert'Kartik K. Agaram2016-01-202-14/+14
| | | | I had to undo some over-zealous changes in 2576.
* 2576 - distinguish allocated addresses from othersKartik K. Agaram2016-01-1911-1138/+1143
| | | | | | | | | | | | | | | | 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-285-16/+28
| | | | | | | | | | 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..
* support immutability checks in sandbox/ appKartik K. Agaram2015-12-157-17/+19
|
* 2477Kartik K. Agaram2015-11-271-2/+2
|
* 2476Kartik K. Agaram2015-11-271-1/+1
|
* 2474 - overload 'copy' and 'equal' for textKartik K. Agaram2015-11-221-1/+1
| | | | 2473 was the final bugfix holding this back.
* 2471Kartik K. Agaram2015-11-221-4/+0
|
* 2468 - overload print-character as just 'print'Kartik K. Agaram2015-11-216-25/+25
|
* 2467 - rename 'string' to 'text' everywhereKartik K. Agaram2015-11-216-26/+26
| | | | | | | | 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.
* 2466 - eliminate ':string' from scenariosKartik K. Agaram2015-11-211-1/+1
|
* 2446 - drop '-duplex' namespacing in recipesKartik K. Agaram2015-11-156-77/+77
| | | | Great that it just worked after the previous commit.
* 2434Kartik K. Agaram2015-11-131-0/+4
|
* 2428 - sandbox/ working againKartik K. Agaram2015-11-1211-543/+521
|
* 2309Kartik K. Agaram2015-10-2810-424/+424
|
* 2268 - bugfix in 'mu sandbox'Kartik K. Agaram2015-10-092-1/+16
| | | | | We still can't have decent tests in this variant. Thanks Jack and Caleb Couch.
* 2267Kartik K. Agaram2015-10-091-1/+1
| | | | | Introducing a new 'newlayer' tag like 'todo', to record places where a nascent new layer might be starting to bud off.
rect_addressing.cc?h=main&id=280f5115465501464b2f7e9f4671f9e8f3b52147'>280f5115 ^
0ca791cd ^
3f4bbe9e ^
0ca791cd ^
280f5115 ^
c8c50658 ^
c8c50658 ^
1f56ac64 ^
0cb988d0 ^
3ecd66fb ^
0cb988d0 ^
39c0d1b1 ^

871ea368 ^

280f5115 ^





069ed1c8 ^
280f5115 ^



ce315187 ^



c8c50658 ^
c8c50658 ^
1f56ac64 ^
0cb988d0 ^
3ecd66fb ^
0cb988d0 ^
39c0d1b1 ^

871ea368 ^

ce315187 ^



0ca791cd ^
3f4bbe9e ^
0ca791cd ^
ce315187 ^
c8c50658 ^
c8c50658 ^
1f56ac64 ^
0cb988d0 ^
3ecd66fb ^
0cb988d0 ^
39c0d1b1 ^

871ea368 ^

ce315187 ^





069ed1c8 ^
ce315187 ^



8745e745 ^



c8c50658 ^
c8c50658 ^
1f56ac64 ^
0cb988d0 ^
3ecd66fb ^
0cb988d0 ^
39c0d1b1 ^

871ea368 ^

8745e745 ^



0ca791cd ^
3f4bbe9e ^
0ca791cd ^
8745e745 ^
c8c50658 ^
c8c50658 ^
1f56ac64 ^
0cb988d0 ^
3ecd66fb ^
0cb988d0 ^
39c0d1b1 ^

871ea368 ^

8745e745 ^





069ed1c8 ^
8745e745 ^



5a25c6e6 ^


e07a3f28 ^
c8c50658 ^
1f56ac64 ^
0cb988d0 ^
e07a3f28 ^

39c0d1b1 ^

e07a3f28 ^
871ea368 ^
e07a3f28 ^
5a25c6e6 ^
c67ca4b9 ^
125bea47 ^
c67ca4b9 ^

c8c50658 ^
c8c50658 ^
1f56ac64 ^
0cb988d0 ^
3ecd66fb ^
0cb988d0 ^
39c0d1b1 ^

871ea368 ^

c67ca4b9 ^


c8c50658 ^
c8c50658 ^
1f56ac64 ^
0cb988d0 ^
3ecd66fb ^
0cb988d0 ^
39c0d1b1 ^

871ea368 ^

c67ca4b9 ^


c8c50658 ^
c8c50658 ^
1f56ac64 ^
0cb988d0 ^
3ecd66fb ^
0cb988d0 ^
39c0d1b1 ^

871ea368 ^

c67ca4b9 ^



0ca791cd ^
0a7b0372 ^
0ca791cd ^
c67ca4b9 ^
c8c50658 ^
c8c50658 ^
1f56ac64 ^
0cb988d0 ^
3ecd66fb ^
0cb988d0 ^
39c0d1b1 ^

871ea368 ^

c67ca4b9 ^


311297cb ^
c67ca4b9 ^

069ed1c8 ^
c67ca4b9 ^






069ed1c8 ^
c67ca4b9 ^



c8c50658 ^
c8c50658 ^
1f56ac64 ^
0cb988d0 ^
3ecd66fb ^
0cb988d0 ^
39c0d1b1 ^

871ea368 ^

c67ca4b9 ^


c8c50658 ^
c8c50658 ^
1f56ac64 ^
0cb988d0 ^
3ecd66fb ^
0cb988d0 ^
39c0d1b1 ^

871ea368 ^

c67ca4b9 ^
125bea47 ^



c8c50658 ^

1f56ac64 ^
0cb988d0 ^
3ecd66fb ^
0cb988d0 ^
871ea368 ^

125bea47 ^



0ca791cd ^
3f4bbe9e ^
0ca791cd ^
125bea47 ^
c8c50658 ^
1f56ac64 ^
0cb988d0 ^
3ecd66fb ^
f1b3d7b9 ^
39c0d1b1 ^

871ea368 ^

125bea47 ^





069ed1c8 ^
125bea47 ^

069ed1c8 ^
125bea47 ^

95e5511a ^
f1b3d7b9 ^





d47f3a82 ^
f1b3d7b9 ^




d47f3a82 ^

f1b3d7b9 ^

d47f3a82 ^

f1b3d7b9 ^


















d47f3a82 ^
f1b3d7b9 ^





d47f3a82 ^
f1b3d7b9 ^

d47f3a82 ^


f1b3d7b9 ^







f1b3d7b9 ^
d47f3a82 ^

f1b3d7b9 ^


95e5511a ^


c8c50658 ^
1f56ac64 ^
0cb988d0 ^
3ecd66fb ^
0cb988d0 ^
95e5511a ^

39c0d1b1 ^

95e5511a ^
871ea368 ^

95e5511a ^



45967d21 ^





95e5511a ^

9e45873f ^



c8c50658 ^
9e45873f ^
1f56ac64 ^
0cb988d0 ^
3ecd66fb ^
0cb988d0 ^
39c0d1b1 ^

871ea368 ^

8a026831 ^

9e45873f ^

292ccba1 ^
069ed1c8 ^
9e45873f ^
8a026831 ^
9e45873f ^


099ed980 ^

0ca791cd ^
3f4bbe9e ^
0ca791cd ^
099ed980 ^
c8c50658 ^
099ed980 ^
1f56ac64 ^
0cb988d0 ^
3ecd66fb ^
0cb988d0 ^
39c0d1b1 ^

871ea368 ^

8a026831 ^

099ed980 ^






069ed1c8 ^
099ed980 ^
8a026831 ^
099ed980 ^




3639efce ^



c8c50658 ^
1f56ac64 ^
3639efce ^


39c0d1b1 ^

3639efce ^



bc9f26de ^
0c6c7ff7 ^
1a62e61d ^
069ed1c8 ^
3639efce ^
9c1d07ba ^



c8c50658 ^

1f56ac64 ^
9c1d07ba ^


39c0d1b1 ^

9c1d07ba ^
bc9f26de ^

9c1d07ba ^

0c6c7ff7 ^
9c1d07ba ^

bc9f26de ^

069ed1c8 ^
bc9f26de ^




069ed1c8 ^
9c1d07ba ^



c8c50658 ^

1f56ac64 ^
9c1d07ba ^


39c0d1b1 ^

9c1d07ba ^
bc9f26de ^

9c1d07ba ^




c8c50658 ^

1f56ac64 ^
9c1d07ba ^


39c0d1b1 ^

9c1d07ba ^
bc9f26de ^

9c1d07ba ^

0c6c7ff7 ^
9c1d07ba ^

bc9f26de ^

069ed1c8 ^
bc9f26de ^



1a62e61d ^
069ed1c8 ^
9c1d07ba ^



c8c50658 ^

1f56ac64 ^
9c1d07ba ^


39c0d1b1 ^

9c1d07ba ^
bc9f26de ^

9c1d07ba ^
7d4e351a ^






















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
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666