summary refs log tree commit diff stats
path: root/compiler/semgnrc.nim
Commit message (Collapse)AuthorAgeFilesLines
* fixes #4600Andreas Rumpf2016-08-231-6/+7
|
* fixes #4555Andreas Rumpf2016-08-021-1/+1
|
* compiler almost free of deprecated expr/stmt namesAndreas Rumpf2016-07-301-2/+2
|
* stdlib and compiler don't use .immediate anymoreAndreas Rumpf2016-07-291-3/+6
|
* fixes #2377Andreas Rumpf2016-07-081-1/+6
|
* fixes a critical bug about template instantiations in genericsAndreas Rumpf2016-06-051-2/+2
|
* first implementation of the new lambda-lifting pass; barely anything worksAndreas Rumpf2015-12-261-2/+2
|
* fixes regression: NimForum compiles againAraq2015-09-211-8/+2
|
* fixes #3268Araq2015-09-181-1/+1
|
* fixes #3329Araq2015-09-181-1/+1
|
* fixes the most pressing regressions introduced by the new handling of a[i] ↵Araq2015-09-161-6/+28
| | | | in the compiler
* first attempt to fix 'a[i]' handling in genericsAraq2015-09-121-0/+23
|
* fixes #1965Araq2015-08-101-2/+2
|
* breaking change: symbol lookups in generics follows spec more closely; fixes ↵Araq2015-08-071-61/+63
| | | | #2664
* interpret `tuple` as a class and `tuple[]` as the empty tupleMax Zerzouri2015-03-061-1/+1
| | | | | | | | When the indentation syntax is allowed it is always interpreted as a tuple: type Unit = tuple
* Fix documentations for declared (instead of defined)def2015-02-181-1/+1
|
* nimsuggest improvementsAraq2015-01-301-14/+38
|
* Happy new year!Guillaume Gelin2015-01-061-1/+1
|
* fix #1056Zahary Karadjov2014-12-311-1/+2
|
* fix #1789 (binding to static params during generic proc sigmatch)Zahary Karadjov2014-12-311-1/+7
|
* fixes #1120Araq2014-12-251-2/+0
|
* fixes #1039Araq2014-11-281-1/+1
|
* fixes #1337Araq2014-11-231-13/+22
|
* fixes #940Araq2014-11-171-1/+1
|
* 'pretty' command does not exist anymore; improvements for nimfixAraq2014-09-101-14/+31
|
* fixes #1444Araq2014-08-311-7/+13
|
* updated the compiler to use the new symbol namesAraq2014-08-281-4/+4
|
* Nimrod renamed to NimAraq2014-08-281-1/+1
|
* the big renamefest: first stepsAraq2014-08-221-2/+2
|
* fixes latest regressionAraq2014-07-111-1/+1
|
* fixes #1011Araq2014-07-091-3/+34
|
* Renamed considerAccents to considerQuotedIdentClay Sweetser2014-05-261-2/+2
|
* Renamed 'considerAcc' to 'considerAccents' for clarityClay Sweetser2014-05-241-2/+2
| | | | | Added documentation string to 'considerAccents' Modified renderParamType's assertion to allow nkAcc nodes.
* compiler prepared for the new comment handlingAraq2014-04-301-0/+1
|
* propagate semExpr flags in macro/template expansionZahary Karadjov2014-04-061-4/+4
|
* fixes wrong commitAraq2014-03-221-2/+0
|
* fixes #1006Araq2014-03-221-0/+2
|
* split the inline and closure iterators into different symbol kinds for ↵Zahary Karadjov2014-03-061-2/+2
| | | | easier discrimination between them
* fixes 'newSeq[T]' instantiation bugAraq2014-02-091-7/+4
|
* it's the year 2014Araq2014-01-191-3/+3
|
* introduce tyFromExpr; fixes #618Zahary Karadjov2014-01-041-7/+0
|
* case consistency part 4Araq2013-12-271-9/+9
|
* case consistency part 1Araq2013-12-271-1/+1
|
* fixes #531Araq2013-07-241-1/+1
|
* Merge branch 'master' of github.com:Araq/NimrodAraq2013-05-141-16/+16
|\
| * get rid of the SymTab* procs in astalgoZahary Karadjov2013-05-121-2/+2
| |
| * switch to a linked list of scopesZahary Karadjov2013-05-111-14/+14
| |
* | todo.txt changesAraq2013-05-111-5/+0
|/
* Removes executable bit for text files.Grzegorz Adam Hankiewicz2013-03-161-0/+0
|
* bugfix: 'indexOf' for tuple fields worksAraq2013-03-111-5/+0
|
previous revision' href='/akkartik/mu/blame/html/070table.mu.html?h=hlt&id=805d58c6aeeeba3e4989c0eed6781b3861e8fae0'>^
204dae92 ^
4a48bedc ^
204dae92 ^
b301e0c0 ^





204dae92 ^


b301e0c0 ^
204dae92 ^


b301e0c0 ^
204dae92 ^
4a48bedc ^
204dae92 ^
b301e0c0 ^





204dae92 ^









b301e0c0 ^
204dae92 ^
4a48bedc ^
204dae92 ^



dcc060c7 ^


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