summary refs log tree commit diff stats
path: root/compiler/lambdalifting.nim
Commit message (Expand)AuthorAgeFilesLines
...
* fixes subtle interaction between closures and 'yield'Araq2014-07-221-30/+74
* new jester compilesAraq2014-06-281-8/+16
* some progress for jester+asyncAraq2014-06-271-27/+50
* rewrote lambdalifting; fixes deeply nested closuresAraq2014-06-261-295/+401
* first version of 'spawn'Araq2014-04-161-31/+0
* gensym'ed symbols work with lambda-lifting; closures produce objects instead ...Araq2014-04-031-34/+38
* fixes #932Araq2014-03-291-1/+4
* fixes #404Araq2014-03-231-8/+1
* fix #1001Zahary Karadjov2014-03-161-1/+1
* split the inline and closure iterators into different symbol kinds for easier...Zahary Karadjov2014-03-061-8/+7
* capturing of an iterator works betterAraq2014-02-091-9/+22
* fixes #885Araq2014-02-091-24/+29
* disable internalError so that nimbuild compiles againAraq2014-01-251-0/+2
* small code cleanupsAraq2014-01-231-3/+1
* closure iterators workAraq2014-01-231-15/+39
* closure iterators almost workAraq2014-01-231-185/+183
* next steps for closure iteratorsAraq2014-01-221-48/+86
* 'nil' as a statement is deprecated, use an empty 'discard' insteadAraq2014-01-191-11/+11
* case consistency: next stepsAraq2013-12-291-3/+3
* case consistency part 4Araq2013-12-271-24/+24
* tcnstseq works againAraq2013-11-071-0/+2
* VM now supports lambda liftingAraq2013-11-061-1/+3
* check the owners of generic instantiations properly and fix tinvalidclosureZahary Karadjov2013-08-191-2/+2
* Revert "Revert "made some tests green""Zahary Karadjov2013-08-191-1/+1
* Revert "Revert "fix tforwardgeneric""Zahary Karadjov2013-08-191-0/+3
* Revert "fix tforwardgeneric"Araq2013-05-271-3/+0
* Revert "more test made green"Araq2013-05-271-1/+1
* more test made greenZahary Karadjov2013-05-261-1/+1
* fix tforwardgenericZahary Karadjov2013-05-261-0/+3
* fixed void context detectionAraq2013-05-071-2/+0
* bugfix: lambdalifting needs to deep copy parametersAraq2013-04-081-6/+11
* small bugfix for lambda liftingAraq2013-03-161-1/+1
* EcmaScript => JS. Fixes #330Simon Hafner2013-02-151-3/+3
* fixed some closure related bugsAraq2013-01-221-1/+1
* small bugfix for lambdalifting; preparations for a better testing frameworkAraq2013-01-191-1/+4
* 'return' for first class iteratorsAraq2012-11-261-3/+12
* added system.finished for first class iteratorsAraq2012-11-171-7/+0
* next steps for first class iteratorsAraq2012-11-151-5/+27
* improvements for first class iteratorsAraq2012-11-151-4/+10
* bugfix: stack traces; first class iterators almost workingAraq2012-11-151-21/+89
* documented 'mixin' declarationAraq2012-11-081-0/+3
* bugfix: 'result' cannot be captured in a closureAraq2012-09-231-3/+4
* next steps to hygienic templatesAraq2012-08-201-11/+7
* first steps to make templates hygienicAraq2012-08-201-4/+5
* more bugfixes for closuresAraq2012-08-141-3/+5
* made tests green againAraq2012-08-141-1/+9
* top level closures should work; transf is not a pass anymore; next steps for ...Araq2012-08-131-29/+171
* idetools improvements; preparation of first class iterators; fixes #183Araq2012-08-021-1/+27
* next steps for closure consistency; fixes #176Araq2012-07-251-4/+7
* 'addSon' for types deprecated for 'int literal type' analysisAraq2012-07-091-5/+6
er/commit/ranger/gui/colorscheme.py?h=v1.9.3&id=b3d031a913814900467358b2adf20a148bf6de1a'>b3d031a9 ^
d1a1173d ^



5348e120 ^

d1a1173d ^




f6de1679 ^
d1a1173d ^

d69f1ed3 ^
d1a1173d ^
b3d031a9 ^
d1a1173d ^
b3d031a9 ^
1687e0f4 ^
d1a1173d ^





















84a22ae0 ^
1687e0f4 ^
d1a1173d ^
5348e120 ^
f6de1679 ^
51ec08da ^

5348e120 ^
f6de1679 ^
c78ee48d ^
d1a1173d ^






1687e0f4 ^
bc79568d ^
ab41c776 ^
f7199d8e ^
bc79568d ^

f7199d8e ^
bc79568d ^


f7199d8e ^


bc79568d ^


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