about summary refs log tree commit diff stats
path: root/080display.cc
Commit message (Collapse)AuthorAgeFilesLines
* 2803Kartik K. Agaram2016-03-211-2/+2
| | | | | Show more thorough information about instructions in the trace, but keep the original form in error messages.
* 2773 - switch to 'int'Kartik K. Agaram2016-03-131-10/+10
| | | | This should eradicate the issue of 2771.
* 2712Kartik K. Agaram2016-02-261-9/+9
|
* 2685Kartik K. Agaram2016-02-191-2/+2
| | | | | | | | | | | | | | | | Stack of plans for cleaning up replace_type_ingredients() and a couple of other things, from main problem to subproblems: include type names in the type_tree rather than in the separate properties vector make type_tree and string_tree real cons cells, with separate leaf nodes redo the vocabulary for dumping various objects: do we really need to_string and debug_string? can we have a version with *all* information? can we have to_string not call debug_string? This commit nibbles at the edges of the final task, switching from member method syntax to global function like almost everything else. I'm mostly using methods just for STL in this project.
* 2553 - keep failed specializations from generating spurious errorsKartik K. Agaram2015-12-281-1/+0
| | | | Thanks Caleb Couch.
* three bugs fixedKartik K. Agaram2015-12-151-1/+5
| | | | | | | | | | | | | | | | | - notes bug in edit/ triggers in immutable but not master branch bug triggered by changes to layer 059: we're finding an unspecialized call to 'length' in 'append_6' hard to debug because trace isn't complete just bring out the big hammer: use a new log file length_2 from recipes.mu is not being deleted (bug #1) so reload doesn't switch length to length_2 when variant_already_exists (bug #2) so we end up saving in Recipe for a primitive ordinal so no valid specialization is found for 'length' (bug #3) why doesn't it trigger in a non-interactive scenario? argh, wasn't checking for an empty line at end. ok, confidence restored.
* 2430 - make room for more transformsKartik K. Agaram2015-11-131-0/+498
le='author Kartik K. Agaram <vc@akkartik.com> 2017-12-03 23:25:40 -0800 committer Kartik K. Agaram <vc@akkartik.com> 2017-12-03 23:25:40 -0800 4134 - 'input' = 'ingredient'' href='/akkartik/mu/commit/092socket.mu?h=hlt&id=4a48bedcd1d708a43d43dc6259a4e45c52ea3d00'>4a48bedc ^
f116818c ^
d7e48920 ^

7d07cd1d ^
b1f0fa4d ^



















9da067db ^

87eb3aca ^
d7e48920 ^
4a48bedc ^
9da067db ^



a65a32ae ^
9da067db ^


87eb3aca ^
d7e48920 ^

300a1d6e ^
f24eeaab ^
4a48bedc ^
f24eeaab ^
4a48bedc ^
9da067db ^



0606f4ac ^

294b2ab3 ^
f24eeaab ^

0606f4ac ^






5eb5a8de ^
f24eeaab ^



4a48bedc ^
f24eeaab ^







87eb3aca ^
62ae069e ^
4a48bedc ^
62ae069e ^
28191d31 ^
b07576d2 ^

28191d31 ^

b07576d2 ^

28191d31 ^
62ae069e ^
b07576d2 ^

62ae069e ^
b07576d2 ^
62ae069e ^

5eb5a8de ^

87eb3aca ^
5eb5a8de ^
4a48bedc ^
5eb5a8de ^
87eb3aca ^
62ae069e ^

f24eeaab ^
62ae069e ^
4a48bedc ^
62ae069e ^





f24eeaab ^
62ae069e ^



300a1d6e ^



4a48bedc ^
300a1d6e ^


























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