summary refs log tree commit diff stats
path: root/compiler/wordrecg.nim
Commit message (Expand)AuthorAgeFilesLines
* Add the ability to pass a value with the -d flagJeff Ciesielski2016-07-041-1/+2
* use 'using' instead of 'sig' keyword; cleans up new features a bitAndreas Rumpf2016-02-291-2/+2
* first version of .partial objectsAndreas Rumpf2016-02-281-1/+2
* added 'sig' feature; removed tfShared support in the compilerAndreas Rumpf2016-02-281-2/+2
* added undocumented exportNims pragma for Nimscript supportAraq2015-10-031-2/+3
* implement bitsize pragma for bitfieldsAman Gupta2015-09-281-0/+2
* fixes #2590; methods now require a .base annotationAraq2015-09-061-2/+3
* Introduce {.noRewrite.} expr pragma disabling TRAdam Strzelecki2015-06-021-2/+2
* breaking change: 'concept' is now a keyword and used instead of 'generic'Araq2015-03-231-2/+2
* 'constructor' pragma for C++ supportAraq2015-03-181-57/+57
* Happy new year!Guillaume Gelin2015-01-061-1/+1
* destuctors are experimental; 'func' is now a keywordAraq2014-12-101-2/+2
* implemented 'experimental' switchAraq2014-12-051-2/+3
* implements 'defer'Araq2014-12-041-2/+2
* implemented 'guard' annotationAraq2014-09-211-2/+2
* Nimrod renamed to NimAraq2014-08-281-1/+1
* 'lambda' is no keyword anymoreAraq2014-08-081-2/+2
* progress on deepCopyAraq2014-08-011-2/+2
* New concurrency model: next stepsAraq2014-04-191-5/+6
* first version of 'spawn'Araq2014-04-161-1/+2
* new concurrency model: first steps; shared is not a keyword anymoreAraq2014-04-141-2/+2
* Added support for {.packed.} pragma on objectsAudun Wilhelmsen2014-03-181-2/+2
* implemented 'union' and 'unchecked' pragmasAraq2014-03-051-2/+2
* renamed noStackFrame to asmNoStackFrameAraq2014-02-181-2/+2
* case consistency part 4Araq2013-12-271-2/+2
* Merge branch 'master' of https://github.com/Araq/Nimrod into vm2Araq2013-12-231-2/+3
|\
| * implemented 'injectStmt'; more debug supportAraq2013-12-161-2/+3
* | bugfix: keywords are sortedAraq2013-12-051-5/+5
|/
* implemented the using statementZahary Karadjov2013-08-311-5/+5
* implemented delegators and improved the error messages of unmatched type classesZahary Karadjov2013-08-261-2/+4
* implemented computed goto supportAraq2013-08-131-2/+2
* implements the 'codegenDecl' pragmaAraq2013-06-271-2/+2
* implemented large parts of the 'not nil' checkingAraq2013-06-091-2/+2
* added a ``noforward`` pragma that enables a new compilation strategyZahary Karadjov2013-05-111-2/+2
* Removes executable bit for text files.Grzegorz Adam Hankiewicz2013-03-161-0/+0
* made 'shared' a keywordAraq2012-11-221-2/+3
* implemented 'tags' pragmaAraq2012-11-111-3/+3
* bugfix: wrong assertions for C++ code generation; some solaris support; first...Araq2012-10-301-4/+4
* 'mixin' and 'interface' are now keywordsAraq2012-09-221-4/+5
* next steps towards term rewriting macros; simple examples workAraq2012-08-301-2/+2
* next steps to hygienic templatesAraq2012-08-201-2/+3
* first steps to make templates hygienicAraq2012-08-201-2/+2
* documentation improvements; added system.gorge (for Araq's fun)Araq2012-06-221-2/+2
* destructor pragmaZahary Karadjov2012-06-071-2/+2
* codegen for user-defined destructorsZahary Karadjov2012-05-251-1/+6
* more Objective-C and C keywords are now escapedZahary Karadjov2012-04-181-4/+12
* experimental support for preserving local variable names in the generated codeZahary Karadjov2012-04-131-7/+45
* Added ``global`` pragma that can be used to introduce new global variables fr...Zahary Karadjov2012-04-051-2/+2
* merged branch overloading-for-macrosZahary Karadjov2012-03-191-2/+2
|\
| * bootstraps fine with overloadable templatesZahary Karadjov2012-03-141-2/+2
abandon.cc.html?h=hlt&id=5fe060d582d4a82444243a28b18085c971a85628'>5fe060d5 ^
e4ac3c9e ^
5fe060d5 ^
e4ac3c9e ^

5fe060d5 ^










































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