summary refs log tree commit diff stats
path: root/compiler/transf.nim
Commit message (Expand)AuthorAgeFilesLines
...
* fix regressionsAraq2015-08-051-1/+1
* destructors now work with overloaded assignment operators; fixes #2811; fixes...Araq2015-08-051-4/+79
* fixes #3054Araq2015-07-051-3/+2
* fixes #3053Araq2015-07-051-1/+5
* minor bugfixes to the new 'len(nil)==0' featureAraq2015-05-031-2/+1
* fixes #2470, fixes #1354Araq2015-04-281-0/+3
* 'constructor' pragma for C++ supportAraq2015-03-181-2/+1
* fixes #794 properlyAraq2015-03-121-2/+2
* fixes #2287Araq2015-03-121-0/+1
* GC: get rid of pathological behaviour for stack markingAraq2015-03-081-132/+132
* fixes #2051Araq2015-02-201-1/+2
* lots of C++ codegen improvementsAraq2015-02-071-0/+1
* Happy new year!Guillaume Gelin2015-01-061-1/+1
* implemented procCall builtinAraq2014-11-281-5/+9
* Merge branch 'devel' into bigbreakAraq2014-11-031-0/+3
|\
| * Fix dispatcher creation for method prototypes.Reimer Behrends2014-11-021-4/+3
| * Fix method recursion bug.Reimer Behrends2014-10-311-1/+5
* | Nimrod renamed to NimAraq2014-08-281-1/+1
* | the big renamefest: first stepsAraq2014-08-221-2/+2
|/
* fixes recently introduced regressionAraq2014-08-211-14/+43
* fixes #1418Araq2014-08-201-29/+44
* fixes #1319Araq2014-06-301-1/+4
* fixes #866Araq2014-04-061-0/+1
* fixes #404Araq2014-03-231-11/+1
* implements higher-order inline iterators and return type inference for iteratorsZahary Karadjov2014-03-081-5/+7
* split the inline and closure iterators into different symbol kinds for easier...Zahary Karadjov2014-03-061-4/+3
* fixes #584Araq2014-02-141-0/+1
* Merge branch 'devel' of https://www.github.com/Araq/Nimrod into develZahary Karadjov2014-01-261-4/+7
|\
| * closure iterators almost workAraq2014-01-231-6/+6
| * next steps for closure iteratorsAraq2014-01-221-0/+3
* | implements #766;Zahary Karadjov2014-01-241-1/+1
|/
* 'nil' as a statement is deprecated, use an empty 'discard' insteadAraq2014-01-191-2/+2
* case consistency: cs:partial bootstraps on windowsAraq2013-12-291-2/+2
* case consistency: next stepsAraq2013-12-291-24/+24
* case consistency part 4Araq2013-12-271-13/+13
* case consistency part 1Araq2013-12-271-1/+1
* VM now supports lambda liftingAraq2013-11-061-4/+1
* improvements for TR macrosAraq2013-09-171-0/+30
* fixes lots of regressionsAraq2013-06-291-1/+1
* some small performance improvement for the evaluatorAraq2013-06-281-14/+15
* implemented large parts of the 'not nil' checkingAraq2013-06-091-3/+4
* fixes #287; bugfix: subrange checking is performed againAraq2013-04-121-5/+6
* Removes executable bit for text files.Grzegorz Adam Hankiewicz2013-03-161-0/+0
* merged upstream masterZahary Karadjov2013-01-271-3/+3
|\
| * implements #295Araq2013-01-081-3/+3
* | caas is now drivable through stdinZahary Karadjov2012-11-281-6/+2
|/
* doc2 improvements; small lexer bugfix: backslashes in commentsAraq2012-11-201-0/+8
* next steps for first class iteratorsAraq2012-11-151-1/+3
* bugfix: stack traces; first class iterators almost workingAraq2012-11-151-4/+12
* bugfix: exception tracking (still disabled)Araq2012-11-011-1/+1
us revision' href='/akkartik/mu/blame/cpp/036call_ingredient?h=main&id=69e14325e3eaa3722766bb9706d7da5862b6ea26'>^
4be9a93b ^

69f04c3f ^

717ab659 ^
88be3dbc ^
717ab659 ^



















b75e94b3 ^
717ab659 ^


88be3dbc ^
717ab659 ^















dcfca05e ^

717ab659 ^
b75e94b3 ^
dcfca05e ^
b75e94b3 ^
dcfca05e ^
717ab659 ^

dcfca05e ^
717ab659 ^
b75e94b3 ^
717ab659 ^

dcfca05e ^
717ab659 ^

dcfca05e ^
717ab659 ^



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