summary refs log tree commit diff stats
path: root/compiler/astalgo.nim
Commit message (Expand)AuthorAgeFilesLines
* fixes #12196Araq2019-09-161-6/+6
* fixes #12174Araq2019-09-111-0/+1
* Small ast.nim cleanup (#12156)Clyybber2019-09-091-13/+13
* added a simple debugging helperAraq2019-09-081-0/+9
* Merge branch 'devel' into uint-range-checksAndreas Rumpf2019-09-021-2/+40
|\
| * fixes #12020 (#12106)Andreas Rumpf2019-09-021-2/+40
* | squashed and merged with develArne Döring2019-08-211-3/+3
|/
* Remove immediate pragma (#11308)Arne Döring2019-05-291-25/+8
* fixes #10963, disallow implicit mixing of strings and ints/floats (#11292)Miran2019-05-211-2/+2
* Replace countup(x, y) with x .. yClyybber2019-05-071-7/+7
* Replace countup(x, y-1) with x ..< yClyybber2019-05-071-7/+7
* astalgo: use the code style that the other lines use; make debug() less verboseAraq2019-04-161-11/+11
* more destructor based changes (#10885)Andreas Rumpf2019-03-231-1/+1
* fixes #10807 (#10814)cooldome2019-03-121-0/+8
* owned refs must be movedAndreas Rumpf2019-03-071-0/+3
* colors for debugging (not for windows) (#10786)Arne Döring2019-03-051-3/+33
* More depth debug proc (#10782)Arne Döring2019-03-041-89/+209
* minor fix for debug on symbols (#10742)Arne Döring2019-02-261-3/+3
* reduce debug output (#10638)Arne Döring2019-02-131-58/+63
* compiler refactoring: TSymSeq is gone for goodAraq2018-12-111-3/+3
* IC: further progressAraq2018-12-011-9/+20
* improve the error message for 'attempt to redefine X'; fixes #447Andreas Rumpf2018-09-171-4/+9
* even more strict isNil handling for strings/seqs in order to detect bugsAraq2018-08-221-17/+3
* Fix unsound transform pass (#8633)LemonBoy2018-08-141-0/+2
* Gdb pretty printers (#8263)Arne Döring2018-07-161-3/+3
* Merge pull request #8120 from krux02/basic-debuggingAndreas Rumpf2018-06-261-6/+6
|\
| * make basic debugging possibleArne Döring2018-06-261-6/+6
* | allow referencing other parameters in default parameter valuesZahary Karadjov2018-06-161-19/+23
* | fix #6928; fix #7208Zahary Karadjov2018-06-161-0/+9
|/
* toy program works with incremental compilationAndreas Rumpf2018-06-071-2/+1
* refactoring: make projectMainIdx typesafeAndreas Rumpf2018-05-271-8/+8
* Merge branch 'devel' into araq-big-refactoringAndreas Rumpf2018-05-271-8/+8
|\
| * fix #7883; fix #7829Zahary Karadjov2018-05-261-8/+8
* | remove more global variables in the Nim compilerAndreas Rumpf2018-05-271-58/+40
* | make tests green againAndreas Rumpf2018-05-181-19/+21
* | preparations of making compiler/msgs.nim free of global variablesAndreas Rumpf2018-05-171-46/+46
|/
* fixes testament compilationAraq2018-05-141-8/+8
|\
| * fix a compiler crash related to the new strings in C++ modeZahary Karadjov2018-05-071-8/+8
* | big refactoring: parser compiles againAndreas Rumpf2018-05-101-4/+4
|/
* minor code cleanupAndreas Rumpf2017-07-081-7/+1
* Fix #4020; Better handling of templates within conceptsZahary Karadjov2017-06-201-0/+2
* Merge pull request #5823 from markus-oberhumer/ascii127-is-not-printableVarriount2017-05-261-1/+1
|\
| * Ascii character code 127 (DEL) is not printable.Markus F.X.J. Oberhumer2017-05-161-1/+1
* | fix compilation regression in aleaZahary Karadjov2017-04-161-0/+2
* | wip fix #5640Zahary Karadjov2017-04-071-0/+2
|/
* Fix generic forward declarations; fixes #4104; fixes #4908 (#5566)zah2017-03-231-1/+1
* new debugging helper to replace and friendsZahary Karadjov2017-03-101-0/+17
* compiler debug proc: also output node flagsAraq2017-02-151-0/+1
* debug output: show line info earlierAraq2016-12-181-1/+1
* remove unused stuffJacek Sieka2016-08-091-77/+0
f9f49f6'>^
db4f617af ^




43bddf62d ^
db4f617af ^










43bddf62d ^
db4f617af ^
4d4b3b1c0 ^
db4f617af ^
43bddf62d ^
db4f617af ^
4d4b3b1c0 ^
db4f617af ^












43bddf62d ^
db4f617af ^


43bddf62d ^
db4f617af ^


eba335539 ^

db4f617af ^








43bddf62d ^
db4f617af ^


43bddf62d ^
db4f617af ^
43bddf62d ^
db4f617af ^



550b5d9ae ^
db4f617af ^

43bddf62d ^
bf9764e56 ^
db4f617af ^
43bddf62d ^

db4f617af ^

43bddf62d ^

db4f617af ^


004ac801a ^















32109a786 ^
db4f617af ^
11b695875 ^



db4f617af ^
11b695875 ^
db4f617af ^
11b695875 ^
db4f617af ^

004ac801a ^































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