summary refs log tree commit diff stats
path: root/compiler/trees.nim
Commit message (Expand)AuthorAgeFilesLines
* Revert "fix #16185 (#16195)" (#16197)Andreas Rumpf2020-11-301-15/+0
* fix #16185 (#16195)cooldome2020-11-301-0/+15
* fixes #16069; [backport:1.2] [backport:1.4] (#16115)Andreas Rumpf2020-11-241-1/+1
* implements https://github.com/nim-lang/RFCs/issues/258 (#15503)Andreas Rumpf2020-10-061-1/+13
* fixes https://github.com/nim-lang/RFCs/issues/257 [backport:1.2] (#15479)Andreas Rumpf2020-10-031-2/+2
* implements https://github.com/nim-lang/RFCs/issues/257 (#15466)Andreas Rumpf2020-10-021-0/+7
* views: yet another bugfix (#15447)Andreas Rumpf2020-10-011-0/+5
* borrow checking (#15282)Andreas Rumpf2020-09-091-1/+1
* drnim: tiny progress (#13882)Andreas Rumpf2020-04-151-0/+21
* DrNim (Nim compiler with Z3 integration) (#13743)Andreas Rumpf2020-03-311-0/+6
* fix #13730 (#13787)Timothee Cour2020-03-281-2/+6
* trees.nim: compare floating points by their bitpatterns because NaN comparisi...Araq2020-03-231-1/+1
* trees.nim: compare floating points by their bitpatterns because NaN comparisi...Araq2020-03-231-1/+1
* new feature: --staticBoundChecks:on to enforce static array index checking (#...Andreas Rumpf2020-03-181-0/+1
* better support for PROGMEM like annotations for lets/vars; fixes #12216 (#12799)Andreas Rumpf2019-12-051-5/+12
* Cosmetic compiler cleanup (#12718)Clyybber2019-11-281-19/+19
* Small ast.nim cleanup (#12156)Clyybber2019-09-091-5/+5
* [refactoring] remove unused imports in the compiler and in some stdlib modulesAraq2019-07-181-1/+1
* Render deprecated pragmas (#8886)LemonBoy2019-06-031-0/+6
* Replace countup(x, y-1) with x ..< yClyybber2019-05-071-3/+3
* introduce temporary <//> for 'owned' to get this compile with 0.19 (#11145)Andreas Rumpf2019-05-021-1/+1
* more destructor based changes (#10885)Andreas Rumpf2019-03-231-0/+10
* allow uints to appear in deep constant expressionsJacek Sieka2018-12-051-2/+1
* introduce nkTupleConstr AST node for unary tuple construction; breaking changeAndreas Rumpf2018-04-131-1/+1
* the .deprecated pragma for procs now supports a user-definable deprecation me...Andreas Rumpf2018-02-021-1/+1
* preparations for language extensions: 'sink' and 'lent' typesAndreas Rumpf2018-01-071-1/+1
* deprecated unary '<'Andreas Rumpf2017-10-291-1/+1
* introduce a pre-processing pass for the concept bodiesZahary Karadjov2017-06-201-3/+5
* improved comment satement support in macros (#5904)Arne Döring2017-06-021-0/+1
* isDeepConstExpr helper can handle nkRangeAndreas Rumpf2017-05-011-1/+1
* update code from a time when unsigned didn't existAraq2017-02-161-1/+1
* fixes #5391Araq2017-02-161-1/+1
* removed tyArrayConstr completely from the compiler; introduced tyAlias instea...Araq2016-11-141-1/+1
* big refactoring: step 1Araq2016-10-311-1/+1
* Cleanup and fix isConstExpr to return true for all atomic node types.Matthew Baulch2016-08-271-4/+2
* Remove unnecessary result initialisations.Matthew Baulch2016-08-271-2/+1
* Remove useless/misleading comment. flattenStmts not only for patterns.Matthew Baulch2016-08-271-1/+0
* Remove unused procs getProcSym, getOpSym.Matthew Baulch2016-08-271-11/+0
* Remove (unused) flattenTree proc.Matthew Baulch2016-08-271-14/+0
* Remove (unused) swapOperands proc.Matthew Baulch2016-08-271-5/+0
* Rewrite cyclicTree. Performance improved by approx 50%.Matthew Baulch2016-08-271-20/+10
* fixes #4354Andreas Rumpf2016-08-041-7/+12
* fixes #2985Araq2015-06-251-4/+8
* VM: minor fixes to make lexim workAraq2015-04-201-42/+42
* fixes #1547Araq2014-11-271-1/+3
* Nimrod renamed to NimAraq2014-08-281-1/+1
* case consistency: cs:partial bootstraps on windowsAraq2013-12-291-2/+2
* case consistency part 1Araq2013-12-271-18/+18
* implemented large parts of the 'not nil' checkingAraq2013-06-091-2/+1
* Removes executable bit for text files.Grzegorz Adam Hankiewicz2013-03-161-0/+0
committer Thomas E. Dickey <dickey@invisible-island.net> 2014-01-09 00:29:11 -0500 snapshot of project "lynx", label v2-8-8pre_2a' href='/ingrix/lynx-snapshots/commit/lynx_help/keystrokes/other_help.html?id=7c7d8c9582cea3ed0ff52f6e7d212fa85b3cd75f'>7c7d8c95 ^
bc0fa578 ^








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