summary refs log tree commit diff stats
path: root/compiler/nimfix
Commit message (Expand)AuthorAgeFilesLines
* Fix spellings (#12277) [backport]Federico Ceratto2019-09-271-1/+1
* [refactoring] remove unused imports in the compiler and in some stdlib modulesAraq2019-07-181-2/+0
* implements a --nep1:on switch to make the compiler enforce the naming convent...Andreas Rumpf2018-06-133-167/+4
* cleanup compiler/prettybase to not use redudant global variablesAndreas Rumpf2018-05-272-61/+16
* refactoring: remove idents.legacy global variable and pass the IdentCache aro...Andreas Rumpf2018-05-271-7/+7
* remove more global variables in the Nim compilerAndreas Rumpf2018-05-272-2/+2
* preparations of making compiler/msgs.nim free of global variablesAndreas Rumpf2018-05-172-14/+14
* fixes testament compilationAraq2018-05-141-1/+1
|\
| * pretty, prettybase: simplify relative paths (#7779)alaviss2018-05-072-2/+2
* | options.nim: no global variables anymoreAndreas Rumpf2018-05-131-1/+1
* | more modules compile againAndreas Rumpf2018-05-121-2/+2
* | move more global variables into ConfigRefAndreas Rumpf2018-05-111-1/+1
* | guards.nim does compileAndreas Rumpf2018-05-111-12/+13
|/
* make nimfix compile again (#7708)alaviss2018-04-271-7/+7
* refactoring: make FileIndex a distinct type; make line information an uint16;...Andreas Rumpf2018-04-212-13/+13
* fixes #7522Araq2018-04-062-3/+3
* removed compiler internal list implementation (#5371)Arne Döring2017-02-221-3/+3
* implements module grouping for the import statementAndreas Rumpf2016-12-211-5/+5
* make nimfix compile with newer compiler APIAraq2016-12-201-2/+3
* Fix few typosFederico Ceratto2016-10-171-1/+1
* get rid of deprecated toLower/toUpperAndreas Rumpf2016-07-191-4/+4
* Fixes #1801.Dominik Picheta2016-06-061-1/+1
* renamed writeln to writeLine in compilerpatrick dw2015-06-191-1/+1
* Hopefully fixes nimsuggest building against the compiler package.Dominik Picheta2015-06-043-18/+23
* Fixed the paths of nimfix and nimsuggest to be relative.Joey Payne2015-04-251-1/+1
* Merge pull request #2598 from jyapayne/develAndreas Rumpf2015-04-241-1/+1
|\
| * Removed explicit imports in compiler/nimfix/*.nim and added cfg path modifica...Joey Payne2015-04-244-10/+6
| * Added explicit imports for compiler modules to fix compiling nimsuggest.Joey Payne2015-04-243-5/+9
* | Changed project relative path to include the right directory.Hans Raaf2015-02-201-1/+1
* | Happy new year!Guillaume Gelin2015-01-063-3/+3
* | implemented --bestEffort switch for nimfixAraq2014-12-261-2/+4
|/
* documented nimfixAraq2014-11-041-1/+1
* nimfix now in its own directory; single file mode now the defaultAraq2014-10-054-0/+368
6667 manually' href='/ahoang/Nim/commit/tests/testament/testamenthtml.templ?h=devel&id=765116d54736c4d0ad50e1cf222c325f7d8a4d1c'>765116d54 ^
e40bf9036 ^






765116d54 ^

e40bf9036 ^

765116d54 ^

















































































e40bf9036 ^

765116d54 ^
e40bf9036 ^
765116d54 ^


























e40bf9036 ^

765116d54 ^















e40bf9036 ^

765116d54 ^
e40bf9036 ^

e40bf9036 ^


765116d54 ^
e40bf9036 ^

765116d54 ^








e40bf9036 ^

765116d54 ^
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