summary refs log tree commit diff stats
path: root/tests
Commit message (Expand)AuthorAgeFilesLines
* fixes #12224 (#12225)cooldome2019-09-211-0/+24
* asyndispatch: removed deprecated setEvent procAraq2019-09-212-7/+7
* importjs symbol (#12218)Arne Döring2019-09-202-11/+347
* consistent floating point output (#12219)Andreas Rumpf2019-09-201-1/+1
* fixes #10981; fixes #7261 (#12217)Andreas Rumpf2019-09-191-0/+99
* rename cast opcodes, fix for 32bit cast, fix python pretty printer (#12207)Arne Döring2019-09-181-0/+13
* fixes the testcaseAraq2019-09-171-2/+1
* added a testcase for #12195; testament now supports a 'timeout' spec fieldAraq2019-09-172-0/+33
* fixes #12193 (#12199)Andreas Rumpf2019-09-161-0/+18
* fixes #12196Araq2019-09-161-0/+7
* close #7104 by writing a testnarimiran2019-09-131-2/+21
* close #6731 by writing a test casenarimiran2019-09-132-0/+5
* no commas for empty importcpp splat params (#12183)Jasper Jenkins2019-09-121-2/+9
* fixes #12171 (#12173)Andreas Rumpf2019-09-111-2/+21
* fixes #12051Araq2019-09-101-2/+21
* Fixed yield in nnkChckRange (#12160)Yuriy Glukhov2019-09-101-0/+14
* Merge pull request #12153 from dumjyl/get_type-rangeAndreas Rumpf2019-09-081-5/+10
|\
| * fix range.getType crashJasper Jenkins2019-09-051-5/+10
* | error for NimNode index kind (#12154)Jasper Jenkins2019-09-083-0/+24
* | #12141 Define SDL lib name for OpenBSD and FreeBSD (#12143)Euan2019-09-061-1/+5
* | exportc now mangles same as importc, fixes #10578 (#12144)Timothee Cour2019-09-062-0/+31
* | fixes yet another gensym regression (#12145)Andreas Rumpf2019-09-063-7/+31
* | allows access to .compileTime vars at runtime (#12128)Andreas Rumpf2019-09-051-1/+10
* | fixes #12121 (#12126)Andreas Rumpf2019-09-051-0/+31
* | fixes #11713, fixes #1034Araq2019-09-041-0/+20
* | gcbench: better memory usage reportAndreas Rumpf2019-09-031-2/+2
* | Merge branch 'devel' into uint-range-checksAndreas Rumpf2019-09-025-4/+49
|\|
| * revert #12100; typeof(nil) is weird enough, don't allow it as the return typeAndreas Rumpf2019-09-021-3/+0
| * sink as lvalue (#12108)Andreas Rumpf2019-09-021-0/+13
| |\
| | * sink as lvalueAndrii Riabushenko2019-09-021-0/+13
| * | fixes #12020 (#12106)Andreas Rumpf2019-09-021-0/+19
| * | weaking unsigned/signed indexing requirements in order to not break too much ...Araq2019-09-021-0/+6
| * | fix min/max for float numbers (#12068)Arne Döring2019-09-021-1/+11
| |/
* | makes more tests greenAndreas Rumpf2019-09-022-9/+9
* | makes test green againAraq2019-09-021-3/+3
* | added more tests and updated the changelogAraq2019-09-021-0/+14
* | make test greenAraq2019-09-021-38/+48
* | Merge branch 'devel' into uint-range-checksAraq2019-09-0241-134/+705
|\|
| * hashes: implement murmur3 (#12022)Miran2019-09-011-3/+4
| * Fix int literals and range interaction (#11197)Oscar Nihlgård2019-08-312-3/+10
| * fixes #11903 (#11908)Arne Döring2019-08-312-0/+35
| * Merge pull request #12099 from cooldome/destructor_too_lateAndreas Rumpf2019-08-311-0/+14
| |\
| | * fixes #12092Andrii Riabushenko2019-08-311-0/+14
| * | Return typeof(nil) (#12100)Andreas Rumpf2019-08-311-1/+4
| |\ \
| | * | Allow typeof(nil) as a return typeAlbert Safin2019-08-311-1/+4
| | |/
| * / Support iterators returning lent T (#11938)cooldome2019-08-311-0/+59
| |/
| * typeToString can now show (recursively) resolved type aliases; fixes #8569 #...Timothee Cour2019-08-314-3/+32
| * Remove ENDB (#12095)Clyybber2019-08-313-4/+0
| * make testament a tool we ship with Nim; fixes #12084 (#12088)Andreas Rumpf2019-08-301-1/+1
| * fix #12037 (#12089)Clyybber2019-08-301-0/+18
et.mu?h=hlt&id=87eb3acae90e0c7a36562da1bc930e03f1e12cb7'>87eb3aca ^
5eb5a8de ^


87eb3aca ^
62ae069e ^

f24eeaab ^
62ae069e ^







f24eeaab ^
62ae069e ^



300a1d6e ^































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