summary refs log tree commit diff stats
path: root/compiler/aliases.nim
Commit message (Collapse)AuthorAgeFilesLines
* Small ast.nim cleanup (#12156)Clyybber2019-09-091-3/+3
| | | | | * Remove sonsLen * Use Indexable
* removed unused imports [refactoring]Andreas Rumpf2019-08-081-1/+1
|
* fixes #11525Andreas Rumpf2019-06-261-1/+1
|
* Fix #9844 (#11216)Clyybber2019-05-091-1/+8
| | | | * Fixes #9844
* Replace countup(x, y-1) with x ..< yClyybber2019-05-071-3/+3
|
* more modules compile againAndreas Rumpf2018-05-121-2/+2
|
* preparations for language extensions: 'sink' and 'lent' typesAndreas Rumpf2018-01-071-1/+1
|
* fixes #668Araq2017-12-151-1/+7
|
* first implementation of the 'func' keywordAndreas Rumpf2017-09-231-1/+1
|
* removed tyArrayConstr completely from the compiler; introduced tyAlias ↵Araq2016-11-141-2/+2
| | | | instead in preparation for further bugfixes
* fixes #4673Andreas Rumpf2016-09-011-1/+2
|
* Fix issue #2245Roger Shi2015-09-081-1/+1
|
* compiler: Trim .nim files trailing whitespaceAdam Strzelecki2015-09-041-30/+30
| | | | via OSX: find . -name '*.nim' -exec sed -i '' -E 's/[[:space:]]+$//' {} +
* updated the compiler to use the new symbol namesAraq2014-08-281-3/+3
|
* Nimrod renamed to NimAraq2014-08-281-1/+1
|
* 'nil' as a statement is deprecated, use an empty 'discard' insteadAraq2014-01-191-4/+4
|
* case consistency part 4Araq2013-12-271-3/+3
|
* year 2012 for most copyright headersAraq2012-01-021-1/+1
|
* codegen uses alias analysis to generate better codeAraq2011-12-101-1/+1
|
* alias analysis as required for the code gen and the HLOAraq2011-12-081-0/+182
-10-12 21:38:02 -0700 4040' href='/akkartik/mu/commit/subx/010core.cc?h=main&id=bdcb8015d4bd32eaa6f3e21554afcae426b571a5'>bdcb8015 ^
f8831a02 ^







08b7c4d9 ^
b0832f66 ^
a893d3b6 ^
f8831a02 ^
763396e5 ^
08b7c4d9 ^
b0832f66 ^
a893d3b6 ^
665a4d70 ^



b0832f66 ^
665a4d70 ^

b0832f66 ^
665a4d70 ^

b0832f66 ^
665a4d70 ^

b0832f66 ^
665a4d70 ^


b0832f66 ^
665a4d70 ^

b0832f66 ^
665a4d70 ^

b0832f66 ^
665a4d70 ^

b0832f66 ^
665a4d70 ^


b0832f66 ^
665a4d70 ^

b0832f66 ^
665a4d70 ^

b0832f66 ^
665a4d70 ^

b0832f66 ^
665a4d70 ^
f8831a02 ^


f8831a02 ^
f8831a02 ^


95e5511a ^
c1100182 ^
2af68cc8 ^
a893d3b6 ^


f8831a02 ^


e307a807 ^
f8831a02 ^
a7b2a5de ^
6602c82f ^
f8831a02 ^




e307a807 ^
f8831a02 ^

e307a807 ^
f8831a02 ^
a7b2a5de ^
6602c82f ^
f8831a02 ^



a7b2a5de ^
6602c82f ^
f8831a02 ^


f8831a02 ^
a7b2a5de ^
6602c82f ^
f8831a02 ^



2af68cc8 ^
665a4d70 ^
f8831a02 ^

f8831a02 ^



a7b2a5de ^

edd2253b ^
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