summary refs log tree commit diff stats
path: root/compiler/lexer.nim
Commit message (Expand)AuthorAgeFilesLines
* case consistency: cs:partial bootstraps on windowsAraq2013-12-291-44/+44
* case consistency: next stepsAraq2013-12-291-1/+1
* case consistency part 4Araq2013-12-271-61/+61
* case consistency part 1Araq2013-12-271-4/+4
* bugfix: keywords are sortedAraq2013-12-051-4/+6
* 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
s='oid'>3fada0da ^
51530916 ^












51530916 ^



51530916 ^



add9d36d ^

51530916 ^







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