summary refs log tree commit diff stats
path: root/compiler/main.nim
Commit message (Expand)AuthorAgeFilesLines
* implemented mixed mode codegenAraq2014-10-031-2/+0
* Fix 'doc' command.Dominik Picheta2014-09-131-0/+2
* 'pretty' command does not exist anymore; improvements for nimfixAraq2014-09-101-9/+1
* some improvements for nimfixAraq2014-09-091-3/+0
* nimfix handles helloworldAraq2014-09-061-36/+1
* fixes #903, fixes #1513Araq2014-09-031-6/+0
* Nimrod renamed to NimAraq2014-08-281-1/+1
* gpp -> gccEXetoC2014-05-091-1/+1
* fixed constant typo (SimulateCaasMemReset)Simon Hafner2014-05-021-3/+3
* compiler prepared for the new comment handlingAraq2014-04-301-0/+1
* case consistency for evalffiAraq2014-02-011-3/+4
* it's the year 2014Araq2014-01-191-1/+1
* case consistency: cs:partial bootstraps on windowsAraq2013-12-291-2/+2
* case consistency: next stepsAraq2013-12-291-7/+7
* case consistency part 4Araq2013-12-271-52/+52
* case consistency part 1Araq2013-12-271-16/+16
* Merge branch 'master' of https://github.com/Araq/Nimrod into vm2Araq2013-12-231-26/+32
|\
| * Added jsondoc compiler switchErik O'Leary2013-12-121-26/+32
* | Merge branch 'master' into vm2Araq2013-12-131-1/+3
|\|
| * in successful compilations with verbosity:0, all output is suppressed (useful...Zahary Karadjov2013-12-101-1/+3
* | compiler bootstraps with new VMAraq2013-10-151-1/+1
|/
* Take into account dirty buffers in suggest output; Fixes zah/nimrod.vim#14Zahary Karadjov2013-08-071-1/+5
* 'nimrod pretty': next steps, doesn't work yetAraq2013-07-291-0/+1
* 'nimrod pretty' command: next stepsAraq2013-07-291-2/+9
* 'modules' module from 'main'; minor bugfixesAraq2013-07-201-210/+7
* refactorings for the eval engine; bugfix: clean templates as accessorsAraq2013-07-191-0/+12
* fix compiling after suggestZahary Karadjov2013-05-051-23/+17
* support suggest after compile in caas modeZahary Karadjov2013-05-051-1/+6
* bugfix: compiling after idetools usage is now possible in caas modeZahary Karadjov2013-05-051-0/+10
* experimental support for answering idetools --def requests fromZahary Karadjov2013-05-041-8/+12
* nimrod dump can now produce a machine readable json reportZahary Karadjov2013-05-011-5/+35
* bugfix: fix linking when symbol files are usedZahary Karadjov2013-04-081-2/+2
* next steps to make symbol files work againAraq2013-04-081-1/+2
* Removes executable bit for text files.Grzegorz Adam Hankiewicz2013-03-161-0/+0
* Merge branch 'master' of github.com:Araq/NimrodAraq2013-02-281-0/+1
|\
| * added isServing parameterSimon Hafner2013-02-261-0/+1
* | small improvementsAraq2013-02-271-1/+2
|/
* enable 'cast' in interactive mode (beware)Araq2013-02-171-1/+1
* EcmaScript => JS. Fixes #330Simon Hafner2013-02-151-8/+9
* revert to old GC; use --gc:v2 to activate the new GCAraq2013-01-311-8/+9
* the `mainmodule` option has effect only when no explicit module is givenZahary Karadjov2013-01-281-7/+6
* merged upstream masterZahary Karadjov2013-01-271-5/+6
|\
| * bootstrapping works againAraq2013-01-221-3/+1
| * fixed some closure related bugsAraq2013-01-221-1/+3
| * allow 'cast' for the JS targetAraq2013-01-091-1/+1
| * Copyright 2012 -> 2013Araq2013-01-081-1/+1
| * next steps for FFI at compile timeAraq2013-01-021-1/+0
| * bugfix: openssl import for macosxAraq2012-12-191-0/+3
| * lazy paths for Babel supportAraq2012-12-111-3/+3
* | remove any traces of the old global generics cacheZahary Karadjov2013-01-271-3/+0
t'>
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