summary refs log tree commit diff stats
path: root/compiler/lexer.nim
Commit message (Expand)AuthorAgeFilesLines
* Merge branch 'type-classes' into upstreamZahary Karadjov2013-09-031-2/+2
|\
| * implemented the using statementZahary Karadjov2013-08-311-2/+2
* | fixes #572Araq2013-08-301-5/+5
|/
* fixes token's column informationAraq2013-07-301-2/+7
* implements nicer floating point literalsAraq2013-06-271-12/+13
* Merge branch 'master' into newparserAraq2013-05-041-8/+8
|\
| * nimrod dump can now produce a machine readable json reportZahary Karadjov2013-05-011-8/+8
* | new parser worksAraq2013-04-201-0/+1
* | next steps for the new parser/grammarAraq2013-04-201-41/+37
* | first steps to the new parser/grammarAraq2013-04-191-59/+17
|/
* fixes #310Araq2013-04-131-0/+3
* Removes executable bit for text files.Grzegorz Adam Hankiewicz2013-03-161-0/+0
* cleaned up some debugging codeZahary Karadjov2013-01-201-3/+3
* adds an option to interleave the generated code with snippets from the origin...Zahary Karadjov2012-12-021-7/+22
* CaaS in-memory cachingZahary Karadjov2012-11-281-3/+6
* made 'shared' a keywordAraq2012-11-221-2/+3
* doc2 improvements; small lexer bugfix: backslashes in commentsAraq2012-11-201-0/+1
* 'mixin' and 'interface' are now keywordsAraq2012-09-221-5/+8
* implemented backslash for continuation commentsAraq2012-08-231-6/+16
* ' is optional in type suffixes for numerical literalsAraq2012-07-021-3/+6
* more uint related fixesZahary Karadjov2012-06-141-0/+4
* better support for unsigned integers.Zahary Karadjov2012-06-111-8/+33
* added system.getStackTrace; docgen refactoring (incomplete)Araq2012-05-061-0/+2
* implemented 'static'; macros do not work anymoreAraq2012-03-151-2/+4
* bugfix: no need for arrows to be new token kindsAraq2012-02-121-2/+2
* `do' keyword in the grammar for lambda blocksZahary Karadjov2012-02-101-9/+13
* year 2012 for most copyright headersAraq2012-01-021-1/+1
* path canonicalization and proper project relative pathsZahary Karadjov2011-12-091-4/+4
* 'export' is now a keywordAraq2011-11-241-3/+4
* support for C++ code generation; importcpp and importobjc pragmasAraq2011-08-071-2/+2
* old pointer deref operator completely removedAraq2011-07-231-2/+2
* first steps to explicit channels for thread communication; added mainThreadIdAraq2011-07-161-5/+5
* nicer error messages for used keywords as identifiersAraq2011-06-191-0/+4
* got rid of nstrtabs and nhashes modulesAraq2011-06-101-8/+8
* lexer, parser cleanup; boehm gc for mac os xAraq2011-05-171-13/+16
* got rid of some arcane module namesAraq2011-04-211-0/+768
36594a43 ^
26785f2a ^
36594a43 ^
7c610028 ^

9ea76483 ^
781f2462 ^
9ea76483 ^

3a24d35f ^
26785f2a ^



7c610028 ^
36594a43 ^
66b97b4d ^

36594a43 ^

7232de70 ^
36594a43 ^


fd2cba35 ^
9fc64bbc ^
36594a43 ^
6f5d7864 ^
781f2462 ^
96f19e1e ^

9fc64bbc ^
36594a43 ^





7232de70 ^
36594a43 ^







7232de70 ^
36594a43 ^
781f2462 ^





72c4fb2d ^
36594a43 ^
36594a43 ^













decaddb4 ^
9ea76483 ^
781f2462 ^
9ea76483 ^




36594a43 ^






35457609 ^
36594a43 ^









ad8e984f ^
36594a43 ^


100157d1 ^

36594a43 ^



ad8e984f ^
36594a43 ^






ad8e984f ^
36594a43 ^













7232de70 ^





36594a43 ^
7232de70 ^
36594a43 ^

100157d1 ^






36594a43 ^




96ac511e ^
286d7620 ^
96f19e1e ^







f1a6f323 ^
96f19e1e ^

100157d1 ^
518e6c5e ^


100157d1 ^


35457609 ^
088665ef ^

100157d1 ^





35457609 ^
088665ef ^

100157d1 ^






35457609 ^
088665ef ^

100157d1 ^






35457609 ^
088665ef ^

35457609 ^
088665ef ^

100157d1 ^


a7b6abf6 ^
100157d1 ^
35457609 ^
088665ef ^

100157d1 ^
96ac511e ^

3a787ca7 ^
96ac511e ^
3a787ca7 ^
96ac511e ^
72c4fb2d ^





a4ef18b1 ^



35457609 ^
088665ef ^

a4ef18b1 ^
96ac511e ^



35457609 ^
088665ef ^


96ac511e ^




35457609 ^
088665ef ^



f02842a9 ^




35457609 ^
088665ef ^



0060093e ^




088665ef ^
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
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
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308