summary refs log tree commit diff stats
path: root/compiler/pragmas.nim
Commit message (Expand)AuthorAgeFilesLines
* IC: green tests (#17311)Andreas Rumpf2021-03-191-1/+1
* semLambda removed, semProcAux reworked (#17379)Saem Ghani2021-03-171-6/+13
* Remove declPragmas from lambdas [backport:1.0] (#16966)hlaaftana2021-02-091-6/+7
* fix #16752: threadvar now works with importcpp types; osx now uses native TLS...Timothee Cour2021-01-271-1/+3
* `--hintAsError` (#16763)Timothee Cour2021-01-201-0/+1
* IC: next steps (#16632)Andreas Rumpf2021-01-121-3/+3
* IC: next steps (#16550)Andreas Rumpf2021-01-071-0/+4
* big steps torwards an efficient, simple IC implementation (#16543)Andreas Rumpf2021-01-021-6/+4
* refactorings to prepare the compiler for IC (#15935)Andreas Rumpf2020-12-171-1/+3
* cmdline: improve command processing (#16056)Timothee Cour2020-11-261-1/+1
* fix #12558 (#15864)flywind2020-11-091-1/+5
* EnumUtils, speed up findStr in compiler (#15777)cooldome2020-11-031-1/+1
* Use modern enums in compiler (#15775)cooldome2020-11-021-7/+7
* closes #7658 (#15784)flywind2020-10-301-3/+6
* explicit ID generation for easier IC (#15559)Andreas Rumpf2020-10-251-4/+4
* implements https://github.com/nim-lang/RFCs/issues/260 (#15505)Andreas Rumpf2020-10-071-10/+20
* implements https://github.com/nim-lang/RFCs/issues/258 (#15503)Andreas Rumpf2020-10-061-0/+9
* fixes #15430, pop pragma takes invalid input (#15449)shirleyquirk2020-10-011-1/+3
* .noalias annotation; frontend support (#15419)Andreas Rumpf2020-09-281-2/+6
* Expand hoisted default params in sem (#15270)Clyybber2020-09-051-3/+3
* Big compiler Cleanup (#14777)Clyybber2020-08-281-3/+3
* Use typeflag insteadClyybber2020-08-101-2/+4
* Make explicit {.nimcall.} a seperate calling conventionClyybber2020-08-081-3/+3
* fixes #14458 [backport:1.2] (#14756)Andreas Rumpf2020-06-221-1/+1
* `nim doc --backend:js`, `nim doc --doccmd:-d:foo`, `nim r --backend:js`, `--d...Timothee Cour2020-05-111-4/+4
* CT sizeof(+friends) for {.importc, completeStruct.} types, enable ABI static ...Timothee Cour2020-04-231-1/+5
* remove the nilChecks switch; refs #11570Araq2020-04-201-1/+0
* drnim: tiny progress (#13882)Andreas Rumpf2020-04-151-1/+1
* finally de-deprecate the .define and .undef pragmasAndreas Rumpf2020-04-041-2/+0
* new feature: ability to turn specific warnings to errorsAndreas Rumpf2020-04-041-19/+16
* added an .assert pragma and mentioned the pragmas in the changelogAraq2020-04-021-1/+1
* The raises list can now use expressions referencing the generic paramsZahary Karadjov2020-04-011-4/+7
* Replace tfHasRequiresInit with a more accurate mechanismZahary Karadjov2020-04-011-1/+1
* More sophistication; Allow requiresInit to be specified per-fieldZahary Karadjov2020-04-011-3/+7
* First steps, the compiler can boot with enforced requiresInitZahary Karadjov2020-04-011-1/+1
* DrNim (Nim compiler with Z3 integration) (#13743)Andreas Rumpf2020-03-311-5/+32
* '.push raises: []' now also affects proc types (#13776)Andreas Rumpf2020-03-291-3/+3
* new feature: --staticBoundChecks:on to enforce static array index checking (#...Andreas Rumpf2020-03-181-2/+5
* sink parameter inference for types that have destructors (#13544)Andreas Rumpf2020-03-041-2/+6
* properly handle note override logic/verbosity/config/cmdline using modifiedyN...Timothee Cour2020-02-271-0/+1
* make goto based exceptions available for 'nim cpp' (#13244)Andreas Rumpf2020-01-251-2/+2
* make case-object transitions explicit, make unknownLineInfo a const, replace ...Jasper Jenkins2020-01-171-1/+1
* fixes #13122 (#13126)Andreas Rumpf2020-01-131-4/+2
* VM: support importc var, ptr/pointer types, cast int <=> ptr/pointer (#12877)Timothee Cour2020-01-051-0/+2
* fix #12985 {.push.} now does not apply to generic instantiations (#12986)Timothee Cour2020-01-021-1/+1
* --exception:goto switch for deterministic exception handling (#12977)Andreas Rumpf2020-01-011-1/+1
* ARC: cycle detector (#12823)Andreas Rumpf2019-12-171-1/+1
* Cosmetic compiler cleanup (#12718)Clyybber2019-11-281-61/+61
* implemented a new localPassc pragma (#12706)Andreas Rumpf2019-11-221-1/+6
* fixes and changes the recently introduced 'alignas' to be 'align' (#12666)Andreas Rumpf2019-11-151-2/+2
href='#n95'>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