summary refs log tree commit diff stats
path: root/compiler/lookups.nim
Commit message (Expand)AuthorAgeFilesLines
* baby steps for incremental compilationAndreas Rumpf2018-05-301-5/+9
* refactoring: remove idents.legacy global variable and pass the IdentCache aro...Andreas Rumpf2018-05-271-13/+13
* remove more global variables in the Nim compilerAndreas Rumpf2018-05-271-1/+1
* make tests green againAndreas Rumpf2018-05-181-13/+15
* preparations of making compiler/msgs.nim free of global variablesAndreas Rumpf2018-05-171-1/+1
* options.nim: no global variables anymoreAndreas Rumpf2018-05-131-4/+4
* lookups compiles againAndreas Rumpf2018-05-101-56/+53
* Cpp codegen: handling of imported exceptions. Fixes #3571 (#7360)cooldome2018-04-101-2/+0
* Static[T] fixes (#7333)zah2018-03-241-1/+2
* fixes #6965Araq2017-12-281-3/+4
* fixes #1860; macro generating a wrong nkSymChoice nodeAndreas Rumpf2017-10-301-2/+10
* deprecated unary '<'Andreas Rumpf2017-10-291-1/+1
* first implementation of package level types that allow forwarding across modu...Andreas Rumpf2017-10-281-1/+1
* first implementation of the 'func' keywordAndreas Rumpf2017-09-231-2/+4
* .pure enums are much more convenient to use nowAndreas Rumpf2017-09-171-1/+3
* compiler: better error messages (#5613)Andreas Rumpf2017-03-261-13/+20
* big compiler refactoring; avoid globals for multi method dispatcher generationAndreas Rumpf2017-02-221-1/+1
* More progress towards a working #3691.Dominik Picheta2017-02-031-1/+1
* WIP: `as` with generics.Dominik Picheta2017-02-021-0/+3
* implements module grouping for the import statementAndreas Rumpf2016-12-211-2/+2
* recursive modules are only detected to improve error messagesAndreas Rumpf2016-11-241-4/+13
* fixes #4555Andreas Rumpf2016-08-021-7/+14
* compiler almost free of deprecated expr/stmt namesAndreas Rumpf2016-07-301-2/+2
* Locate 'attempt to redefine' errors at the import statement rather than at th...Kier Davis2016-07-301-0/+4
* fixes an valid 'T' is not used hintAndreas Rumpf2016-07-201-1/+2
* fixes #177Andreas Rumpf2016-05-111-3/+16
* first implementation of the new lambda-lifting pass; barely anything worksAndreas Rumpf2015-12-261-1/+1
* renamed inCompilesContext to compilesContextId; added test case for #3313Araq2015-09-181-1/+1
* don't generate memset calls for C++ objectsAraq2015-03-181-37/+37
* minor cleanupsAraq2015-03-011-1/+1
* nimsuggest improvementsAraq2015-01-301-5/+10
* fixes #1944Araq2015-01-181-0/+10
* nimfix now in its own directory; single file mode now the defaultAraq2014-10-051-1/+1
* 'pretty' command does not exist anymore; improvements for nimfixAraq2014-09-101-1/+0
* some improvements for nimfixAraq2014-09-091-0/+10
* added nimfix toolAraq2014-09-051-2/+25
* updated the compiler to use the new symbol namesAraq2014-08-281-8/+5
* the big renamefest: first stepsAraq2014-08-221-46/+45
* Renamed considerAccents to considerQuotedIdentClay Sweetser2014-05-261-10/+10
* Fixes #1200Clay Sweetser2014-05-241-1/+2
* Renamed 'considerAcc' to 'considerAccents' for clarityClay Sweetser2014-05-241-10/+10
* make some tests greenZahary Karadjov2014-03-161-1/+4
* Merge branch 'devel' of github.com:Araq/Nimrod into develZahary Karadjov2014-03-061-1/+1
|\
| * bugfix: unreported 'compiles' bugAraq2014-03-051-1/+1
* | split the inline and closure iterators into different symbol kinds for easier...Zahary Karadjov2014-03-061-1/+1
|/
* fixes #892Araq2014-02-141-0/+1
* bugfix: immediate templates are preferred consistently (danger: breaks code)Araq2014-02-041-1/+13
* 'nil' as a statement is deprecated, use an empty 'discard' insteadAraq2014-01-191-1/+1
* case consistency: cs:partial bootstraps on windowsAraq2013-12-291-7/+7
* case consistency part 4Araq2013-12-271-7/+7
^
da84aec5 ^
17757c86 ^
da84aec5 ^

34217e4d ^









da84aec5 ^
34217e4d ^
da84aec5 ^



f63f6863 ^
















































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