summary refs log tree commit diff stats
path: root/compiler/guards.nim
Commit message (Expand)AuthorAgeFilesLines
* added '..^' and '..<' operators; 'nil' is allowed for 'len'; added plugin sys...Araq2015-04-221-1/+2
* cleaned up some magics to make room for new magics; added '..<' and '..^' tem...Araq2015-04-221-2/+2
* fixes #2359Araq2015-03-161-2/+2
* disjoint checker is somewhat smarterAraq2015-03-161-2/+17
* fixes #2287Araq2015-03-121-42/+62
* fixes #325Araq2015-01-281-6/+0
* Happy new year!Guillaume Gelin2015-01-061-1/+1
* implemented 'guard' annotationAraq2014-09-211-0/+16
* Nimrod renamed to NimAraq2014-08-281-1/+1
* fixes tinavlid_array_bounds testAraq2014-08-101-1/+1
* Merge pull request #1279 from Varriount/fix-1216Simon Hafner2014-06-181-1/+1
|\
| * Fix issue #1216Clay Sweetser2014-06-151-1/+1
* | tdisjoint_slice2 worksAraq2014-05-311-0/+8
* | 'parallel' proves array boundsAraq2014-05-291-4/+63
* | 'parallel' statement almost workingAraq2014-05-221-21/+37
* | 'parallel' statement: next stepsAraq2014-05-141-37/+75
* | progress for the 'parallel' statementAraq2014-05-141-2/+2
* | initial non-compiling version of 'parallel'Araq2014-05-121-17/+174
|/
* fix #866; generic static paramsZahary Karadjov2014-03-091-4/+0
* fixes #584Araq2014-02-141-14/+28
* 'nil' as a statement is deprecated, use an empty 'discard' insteadAraq2014-01-191-1/+1
* case consistency: next stepsAraq2013-12-291-2/+2
* case consistency part 4Araq2013-12-271-3/+3
* Merge branch 'master' of github.com:Araq/NimrodAraq2013-07-201-1/+2
|\
| * Avoids usefulFact recursion with nil parameter. Fixes #518.Grzegorz Adam Hankiewicz2013-07-091-1/+2
* | refactorings for the eval engine; bugfix: clean templates as accessorsAraq2013-07-191-16/+9
|/
* fixes #481Araq2013-06-131-1/+18
* improvements for 'not nil' checkingAraq2013-06-131-0/+7
* bugfixes for the guarded data flow analysisAraq2013-06-121-66/+95
* next steps for guarded data flow analysisAraq2013-06-111-35/+220
* resolved conflict; added missing filesAraq2013-06-091-0/+346
154 ^
b731e6ef1 ^

e25474154 ^
438703f59 ^
92b8fac94 ^
e25474154 ^
















2df9b442c ^
e25474154 ^
b731e6ef1 ^
e25474154 ^



2df9b442c ^
e25474154 ^
b731e6ef1 ^
e25474154 ^

2df9b442c ^

e25474154 ^


6c5693e63 ^
e25474154 ^





b731e6ef1 ^
e25474154 ^

92b8fac94 ^
e25474154 ^




e25474154 ^
6c5693e63 ^
e25474154 ^


dc669155e ^
e25474154 ^
58186f6c1 ^
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