about summary refs log tree commit diff stats
path: root/cpp
Commit message (Collapse)AuthorAgeFilesLines
* 1110 - 'scenarios' directive applies only to current fileKartik K. Agaram2015-04-207-7/+5
|
* 1109 - interpolate stringsKartik K. Agaram2015-04-204-0/+2235
|
* 1108 - check for typos in memory expectations in scenariosKartik K. Agaram2015-04-202-0/+20
|
* 1107Kartik K. Agaram2015-04-202-1/+49
|
* 1106Kartik K. Agaram2015-04-201-1/+1
|
* 1105 - more primitives for managing ingredientsKartik K. Agaram2015-04-1933-50/+164
|
* 1104 - support 'dump' in mu scenariosKartik K. Agaram2015-04-191-4/+7
|
* 1103Kartik K. Agaram2015-04-192-0/+32
|
* 1102Kartik K. Agaram2015-04-192-0/+23
|
* 1101Kartik K. Agaram2015-04-1917-56/+57
|
* 1100Kartik K. Agaram2015-04-192-0/+829
|
* 1099 - new recipe: convert integer to decimal stringKartik K. Agaram2015-04-1810-14/+1292
|
* 1097 - 'grow-buffer' works the first time!Kartik K. Agaram2015-04-182-0/+372
| | | | | | | | | | | | | | | | | | | I thought I'd need to duplicate scenarios to simulate running some code, making some checks, running some more code. But I can just keep saving state to raw locations! I'd still have to manage raw locations myself, though. And it can be ping-pongy to have to check on the other blocks then go back to the run block. But what's the alternative? Multiple run blocks (even excluding the implementation effort) raise questions of namespace sharing across them. If it gets too bad I can intersperse recipes inside the scenario. Yes, that will work. Of course, overly long tests might themselves be a bad idea. We'll see, this is all terra incognita syntactically speaking. This might not be enough to check that a routine is waiting on a channel, but should keep us until then. Wait, even there what you need is a way to check on the status of your child routines. Yeah, doable. Even if we're getting ahead of ourselves.
* 1096Kartik K. Agaram2015-04-185-5/+5
|
* 1095Kartik K. Agaram2015-04-181-0/+1
|
* 1094 - demarcate sections in layersKartik K. Agaram2015-04-1712-27/+46
| | | | | | We have tangled vs regular comments, but they highlight the same. So we're still at 3 colors for comments. Anything more starts to seem gratuitous.
* 1092 - vim: auto-insert tangle comments like regular onesKartik K. Agaram2015-04-171-0/+3
|
* 1091Kartik K. Agaram2015-04-172-18/+17
|
* 1090Kartik K. Agaram2015-04-179-20/+684
|
* 1089Kartik K. Agaram2015-04-172-0/+71
|
* 1088 - start porting the 'buffer' typeKartik K. Agaram2015-04-175-1/+230
|
* 1087 - mu files can now define containers and exclusive containersKartik K. Agaram2015-04-174-1/+102
|
* 1086 - support variant names in 'maybe-convert'Kartik K. Agaram2015-04-172-3/+63
|
* 1085 - to access variants of sum types use 'maybe-convert'Kartik K. Agaram2015-04-174-1/+111
|
* 1084Kartik K. Agaram2015-04-1730-51/+56
|
* 1083 - start of a sum type for muKartik K. Agaram2015-04-173-0/+89
|
* 1082Kartik K. Agaram2015-04-173-11/+10
| | | | | Turns out I'm only able to define a 'raise' macro because I have include no system headers after that point.
* 1081Kartik K. Agaram2015-04-171-1/+1
|
* 1080Kartik K. Agaram2015-04-171-1/+1
|
* 1079Kartik K. Agaram2015-04-171-0/+1
|
* 1078 - better line numbersKartik K. Agaram2015-04-173-1/+25
| | | | Skip tangle comments inside tangle rather than in the makefile.
* 1077Kartik K. Agaram2015-04-1721-16/+49
|
* 1076Kartik K. Agaram2015-04-171-2/+5
|
* 1075Kartik K. Agaram2015-04-1768-174/+157
|
* 1074Kartik K. Agaram2015-04-1731-52/+52
|
* 1073 - stop fixing the values of primitive recipesKartik K. Agaram2015-04-1714-163/+102
| | | | | In the process I give up trace stability when I move files around, but I gain in exchange the ability to move files around.
* 1072Kartik K. Agaram2015-04-1720-0/+0
|
* 1071Kartik K. Agaram2015-04-161-0/+0
|
* 1070Kartik K. Agaram2015-04-161-0/+4
|
* 1069 - rename record/field to container/elementKartik K. Agaram2015-04-1612-48/+61
| | | | | | | | | This seems more obvious to laypeople. I've also come up with a design for sum types: I'm going to call them exclusive containers. You call 'get' on containers, 'index' on arrays, and 'maybe-convert' on exclusive containers (as well as tagged types, but that's even later).
* 1068 - better line numbersKartik K. Agaram2015-04-152-9/+90
| | | | | Line numbers were broken after inserting some lines from elsewhere. Now we add a #line directive not just before the lines but also after.
* 1067 - no need to indent methods anymoreKartik K. Agaram2015-04-152-51/+50
|
* 1066 - bugfix: support string literals with colonsKartik K. Agaram2015-04-155-13/+38
|
* 1065 - example program for closuresKartik K. Agaram2015-04-142-3/+35
|
* 1064 - rough support for correct line numbers in error messagesKartik K. Agaram2015-04-142-0/+42
|
* 1063 - variable names for surrounding spaces now workKartik K. Agaram2015-04-1419-16/+320
| | | | This was a pain to debug.
* 1062 - bugfix: wasn't aliasing Current_routineKartik K. Agaram2015-04-145-14/+15
| | | | You can't write tests for stupidity.
* 1061Kartik K. Agaram2015-04-142-0/+28
|
* 1060Kartik K. Agaram2015-04-142-6/+5
|
* 1059Kartik K. Agaram2015-04-131-0/+6
|
-1ac_0-105' href='/ingrix/lynx-snapshots/commit/LYMessages_en.h?id=55ebd12c7fa4c97b88a5ca39320ac5d39c13ead0'>55ebd12c ^
e087f6d4























6bd78b38 ^
e087f6d4







945e8eb6 ^
57bfc74f ^

















e087f6d4






































97d3287a ^

e087f6d4









c3ec4181 ^

e087f6d4











945e8eb6 ^
e087f6d4






6f662196 ^

e087f6d4







2f5222ea ^

e087f6d4








84271e58 ^

e087f6d4















1d80538b ^
e087f6d4






945e8eb6 ^
e087f6d4
945e8eb6 ^
e087f6d4









eef116fe ^
86559293 ^
e087f6d4

6bd78b38 ^
e087f6d4







945e8eb6 ^
e087f6d4


3aee60ca ^
6bd78b38 ^
fbcb509d ^
6bd78b38 ^
fbcb509d ^

6bd78b38 ^
fbcb509d ^

c3ec4181 ^

b63d287c ^



a93eca0b ^



b63d287c ^
c3ec4181 ^
6bd78b38 ^


6bd78b38 ^
c3ec4181 ^


6bd78b38 ^


c3ec4181 ^
















84271e58 ^
c3ec4181 ^







55ebd12c ^

c3ec4181 ^





















55ebd12c ^

c3ec4181 ^



























36a66292 ^

fbcb509d ^

945e8eb6 ^






57bfc74f ^



e087f6d4




3aee60ca ^


e087f6d4

945e8eb6 ^



e087f6d4
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