summary refs log tree commit diff stats
path: root/compiler/magicsys.nim
Commit message (Expand)AuthorAgeFilesLines
* even more strict isNil handling for strings/seqs in order to detect bugsAraq2018-08-221-1/+2
* baby steps for incremental compilationAndreas Rumpf2018-05-301-10/+1
* refactoring: remove idents.legacy global variable and pass the IdentCache aro...Andreas Rumpf2018-05-271-15/+5
* remove more global variables in the Nim compilerAndreas Rumpf2018-05-271-1/+1
* make tests green againAndreas Rumpf2018-05-181-1/+1
* platform.nim doesn't use globals anymore; prepare msgs.nim for not using globalsAndreas Rumpf2018-05-181-2/+2
* options.nim: no global variables anymoreAndreas Rumpf2018-05-131-2/+2
* sem pass compiles againAndreas Rumpf2018-05-121-3/+6
* big refactoring: magicsys compiles againAndreas Rumpf2018-05-101-93/+86
* make tests green againAraq2016-11-011-1/+1
* refactoring complete: explicit ident cacheAraq2016-10-311-0/+4
* big refactoring: step 1Araq2016-10-311-0/+4
* fixes #4295Andreas Rumpf2016-06-071-5/+9
* added undocumented exportNims pragma for Nimscript supportAraq2015-10-031-16/+22
* compiler: Trim .nim files trailing whitespaceAdam Strzelecki2015-09-041-13/+13
* implemented 'guard' annotationAraq2014-09-211-1/+1
* the big renamefest: first stepsAraq2014-08-221-5/+7
* some progress for jester+asyncAraq2014-06-271-0/+2
* case consistency: cs:partial bootstraps on windowsAraq2013-12-291-1/+1
* case consistency: next stepsAraq2013-12-291-1/+1
* case consistency part 4Araq2013-12-271-7/+7
* case consistency part 1Araq2013-12-271-9/+8
* fixes #578Araq2013-08-301-1/+1
* float64 is now an alias to 'float'; fixes #545Araq2013-08-301-4/+9
* implemented large parts of the 'not nil' checkingAraq2013-06-091-1/+15
* get rid of ImportTablePos and ModuleTablePosZahary Karadjov2013-05-121-2/+0
* Removes executable bit for text files.Grzegorz Adam Hankiewicz2013-03-161-0/+0
* small improvementsAraq2013-02-271-1/+4
* temporary debugging code for the memory leak investigationZahary Karadjov2012-11-281-0/+9
* exception tracking barely works; but disabledAraq2012-10-311-1/+1
* 'addSon' for types deprecated for 'int literal type' analysisAraq2012-07-091-0/+10
* changed integer promotion rules; breaks bootstrapping and lots of codeAraq2012-07-081-14/+41
* changed integer promotion rules; added math.fmodAraq2012-06-281-2/+21
* better support for unsigned integers.Zahary Karadjov2012-06-111-0/+6
* year 2012 for most copyright headersAraq2012-01-021-1/+1
* got rid of nstrtabs and nhashes modulesAraq2011-06-101-3/+3
* big repo cleanupAraq2011-04-121-0/+87
1725a858 ^
9463d417 ^

b1ce29dd ^
1725a858 ^
9463d417 ^




b1ce29dd ^
1725a858 ^
63030ea7 ^
9463d417 ^

f3760b0f ^
9463d417 ^
9463d417 ^
9463d417 ^


63030ea7 ^





f3760b0f ^
63030ea7 ^






293dbd7e ^
1725a858 ^
f3760b0f ^
293dbd7e ^
293dbd7e ^



f3760b0f ^
293dbd7e ^




293dbd7e ^
293dbd7e ^



293dbd7e ^


293dbd7e ^

12f93e4a ^
1725a858 ^
f3760b0f ^
12f93e4a ^

ff1f5976 ^

12f93e4a ^
f3760b0f ^
12f93e4a ^

ff1f5976 ^
12f93e4a ^


ff1f5976 ^

12f93e4a ^


4243d710 ^



341239c9 ^

4243d710 ^
341239c9 ^
4243d710 ^

f3760b0f ^
4243d710 ^



341239c9 ^







f3760b0f ^
341239c9 ^
4243d710 ^

1164aefc ^






4243d710 ^

4243d710 ^
22d1a275 ^
4243d710 ^







1164aefc ^
f3760b0f ^

1164aefc ^




4243d710 ^

1164aefc ^
4243d710 ^
1164aefc ^
4243d710 ^
1164aefc ^



4243d710 ^

10a3b8cc ^
4243d710 ^

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