summary refs log tree commit diff stats
path: root/compiler/nimblecmd.nim
Commit message (Collapse)AuthorAgeFilesLines
* make case-object transitions explicit, make unknownLineInfo a const, replace ↵Jasper Jenkins2020-01-171-10/+10
| | | | a few magic numbers with consts (#13170)
* fixes disruptek/nimph#102 multi-level nim.cfg use (#13001) [backport]Andy Davidoff2019-12-311-2/+3
|
* Cosmetic compiler cleanup (#12718)Clyybber2019-11-281-2/+2
| | | | | | | | | | | | | | | | | | * Cleanup compiler code base * Unify add calls * Unify len invocations * Unify range operators * Fix oversight * Remove {.procvar.} pragma * initCandidate -> newCandidate where reasonable * Unify safeLen calls
* Substitute $nimbleDir in --path flags (#12750)genotrance2019-11-281-0/+4
|
* compiler refactoring; use typesafe path handing; docgen: render symbols ↵Andreas Rumpf2018-09-071-7/+7
| | | | between modules
* fixes #8776Araq2018-08-271-10/+11
|
* remove more global variables in the Nim compilerAndreas Rumpf2018-05-271-1/+1
|
* move more global variables into ConfigRefAndreas Rumpf2018-05-111-4/+4
|
* big refactoring: parser compiles againAndreas Rumpf2018-05-101-12/+13
|
* fixes #6949Araq2017-12-211-6/+18
|
* implemented new experimental scriptable import mechanismAndreas Rumpf2017-10-011-4/+4
|
* Fixed handling of versions with dashes in nimble pkgs (#6335)Yuriy Glukhov2017-09-061-9/+20
|
* Implement .nimble-link files in the compiler and add tests for them.Dominik Picheta2017-09-021-3/+14
|
* Add readme to tests. Add fileDir option to testament & create nimble test.Dominik Picheta2017-09-021-35/+60
|
* fixes #5752Araq2017-05-021-11/+30
|
* removed compiler internal list implementation (#5371)Arne Döring2017-02-221-4/+4
|
* remove unused stuffJacek Sieka2016-08-091-12/+0
|
* added getOrDefault; bootstrapping works againAraq2015-10-131-1/+1
|
* compiler: Trim .nim files trailing whitespaceAdam Strzelecki2015-09-041-3/+3
| | | | via OSX: find . -name '*.nim' -exec sed -i '' -E 's/[[:space:]]+$//' {} +
* Introduce NotesVerbosity defining verbosity levelsAdam Strzelecki2015-07-031-1/+1
| | | | | | | | | | | | | | This solves two issues: 1. Some notes were enabled explicitly for some verbosity levels, so --hintName:on has no effect if verbosity level was too low. 2. Verbosity level for notes is not longer scattered across the source code, instead if now lives in msgs.nim NotesVerbosity array 3. Individual note settings have stronger effect than verbosity setting, so --hintName:off will disable hint regardless of high verbosity setting, and vice-versa --hintName:on will enable hint even on low verbosity setting.
* Fix typosFederico Ceratto2015-02-151-1/+1
|
* VM supports math and a few os procsAraq2014-08-301-1/+1
|
* renamed babelcmd to nimblecmd; config files are now nim.cfg; other renamingsAraq2014-08-291-0/+90
r Andreas Rumpf <rumpf_a@web.de> 2008-11-16 22:08:15 +0100 committer Andreas Rumpf <rumpf_a@web.de> 2008-11-16 22:08:15 +0100 version 0.7.0' href='/ahoang/Nim/commit/lib/sysstr.nim?h=devel&id=8b2a9401a147bd0b26cd2976ae71a1022fbde8cc'>8b2a9401a ^
405b86068

8b2a9401a ^
405b86068


8b2a9401a ^





405b86068





286e5958d ^
405b86068









286e5958d ^
405b86068
















8b2a9401a ^
405b86068


8b2a9401a ^


405b86068
8b2a9401a ^


405b86068
8b2a9401a ^
405b86068


8b2a9401a ^
405b86068



8b2a9401a ^
405b86068











db4f617af ^
405b86068
db4f617af ^
405b86068

8b2a9401a ^







286e5958d ^

8b2a9401a ^











405b86068


8b2a9401a ^














db4f617af ^
e792940f5 ^
286e5958d ^
e792940f5 ^

8b2a9401a ^



405b86068

07d5a8085 ^
405b86068
















07d5a8085 ^
405b86068


405b86068
07d5a8085 ^
405b86068


















07d5a8085 ^

405b86068
07d5a8085 ^
405b86068


405b86068













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