summary refs log tree commit diff stats
path: root/tests/concepts/texplain.nim
Commit message (Expand)AuthorAgeFilesLines
* fix bugs with dot & call operators [backport] (#20931)metagn2022-11-281-19/+19
* close #17636 (#17643)flywind2021-04-061-46/+44
* fixes #12741 (#14005)Andreas Rumpf2020-04-191-39/+45
* fix #13538 sigmatch errors are now sorted (#13701)Timothee Cour2020-03-201-14/+14
* fix #11854 (#11857)Arne Döring2019-07-301-1/+1
* fix testsTimothee Cour2019-07-081-43/+83
* 32 bit fixes (#10608)Arne Döring2019-02-131-6/+6
* require errormsg to be specified before file.Arne Döring2018-12-111-2/+1
* correctly render AST in doAssert/assert condition: fixes #8518; refs #9301 (#...Timothee Cour2018-10-141-37/+52
* better error messages: use <T1, T2> instead of (T1, T2) in order to prevent c...Araq2018-02-101-4/+4
* make tests green againAraq2017-12-011-40/+44
* Fix #5127Zahary Karadjov2017-06-201-9/+9
* restore compilation and make all concepts tests greenZahary Karadjov2017-03-241-36/+36
* further improvements to the error messages produced by conceptsZahary Karadjov2017-03-241-28/+56
* proper error reporting for concepts and the introduction of the {.explain.} p...Zahary Karadjov2017-03-241-0/+92
:59 -0700 committer Kartik K. Agaram <vc@akkartik.com> 2016-03-27 17:43:41 -0700 2812' href='/akkartik/mu/commit/html/000organization.cc.html?h=main&id=a654e4ecace2d506d1b10f1dde2c287ebe84ef37'>a654e4ec ^
4a39d12d ^
4690ce81 ^
e5c11a51 ^
70f4e9b6 ^
4a39d12d ^
e6056999 ^
672e3e50 ^

a654e4ec ^



e5c11a51 ^






















a654e4ec ^

672e3e50 ^
e5c11a51 ^
a654e4ec ^
204dae92 ^















































































































201458e3 ^

204dae92 ^


















201458e3 ^
204dae92 ^


201458e3 ^
204dae92 ^

672e3e50 ^


a654e4ec ^
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
199
200
201
202
203