summary refs log tree commit diff stats
path: root/compiler/packagehandling.nim
Commit message (Collapse)AuthorAgeFilesLines
* typoAraq2019-05-081-1/+1
|
* fixes #11196Araq2019-05-081-2/+2
|
* nicer 'CC' output messagesAraq2019-05-061-0/+4
|
* remove the restriction that module names need to be unique per Nimble… ↵Andreas Rumpf2019-04-201-4/+10
| | | | | | | | | | (#11064) * remove the restriction that module names need to be unique per Nimble package * make tests green again * use the 'response' linker file also on Unix in order to fix megatest
* compiler refactoring; use typesafe path handing; docgen: render symbols ↵Andreas Rumpf2018-09-071-3/+3
| | | | between modules
* even more strict isNil handling for strings/seqs in order to detect bugsAraq2018-08-221-1/+2
|
* guards.nim does compileAndreas Rumpf2018-05-111-15/+8
|
* happy new yearAraq2017-01-071-1/+1
|
* expr and stmt are now deprecatedAndreas Rumpf2016-07-301-1/+1
|
* fixes #4485; package handling works better; docgen works with --project on ↵Andreas Rumpf2016-07-191-0/+56
Nimble package level
-09-22 13:53:28 +0200 small change to achieve Jukka's last proposal' href='/acidbong/suckless/dwm/commit/view.c?id=346bdea946887d83f857a8944a0189bca51a3e47'>346bdea ^
b003a35 ^



346bdea ^



67986e8 ^

346bdea ^
b233089 ^
346bdea ^
0915da8 ^

9d73909 ^

5983c00 ^
9d73909 ^
8a6679b ^
ca65478 ^
8a6679b ^









5983c00 ^
c107db5 ^
26157e6 ^
aa13727 ^
aa13727 ^
b233089 ^
aa13727 ^

6c5dc70 ^
aa13727 ^
15abade ^
0925dd5 ^

15abade ^
aa13727 ^



5983c00 ^
0b80d18 ^
c107db5 ^
26157e6 ^
7d7cde0 ^

0b80d18 ^
f679125 ^

0b80d18 ^
d108cfa ^
aa13727 ^
ce9a993 ^
aa13727 ^

b233089 ^
aa13727 ^

7d7cde0 ^
b003a35 ^

f679125 ^
0b80d18 ^


aa13727 ^
2583a7c ^
0b80d18 ^

2583a7c ^
0b80d18 ^
b003a35 ^
2583a7c ^
acdea31 ^
b003a35 ^
aa13727 ^
b233089 ^
ce9a993 ^
aa13727 ^

6c5dc70 ^
15abade ^
0925dd5 ^

15abade ^
aa13727 ^



ca65478 ^
aa13727 ^



aa13727 ^








ca65478 ^
aa13727 ^



aa13727 ^









0b80d18 ^

f679125 ^
0b80d18 ^

1d4a24d ^



0b80d18 ^

40bd21c ^
ca65478 ^
40bd21c ^







6499fc4 ^
4b5b3d9 ^
f78c16f ^






5983c00 ^
6499fc4 ^

aa13727 ^
6b25d06 ^
aa13727 ^

67986e8 ^
72faa19 ^

aa13727 ^
6c5dc70 ^
69b738c ^
7225c99 ^
6c5dc70 ^
7225c99 ^
69b738c ^
7225c99 ^

69b738c ^
aa13727 ^
7225c99 ^
aa13727 ^




46d5f9d ^
3aff961 ^
46d5f9d ^





ca65478 ^
b5159df ^
aa13727 ^
5983c00 ^
aa13727 ^




ca65478 ^
aa13727 ^





5983c00 ^
fee8df6 ^


ca65478 ^
aa13727 ^


42fd392 ^
7009ebf ^

5983c00 ^
aa13727 ^


ca65478 ^
06bae9d ^
ec85fdd ^
d800ec0 ^


d800ec0 ^
346bdea ^
d800ec0 ^

0b80d18 ^

0b80d18 ^
6c76707 ^









aa13727 ^
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