summary refs log tree commit diff stats
path: root/compiler/jsgen.nim
diff options
context:
space:
mode:
authorjcosborn <jcosborn@users.noreply.github.com>2020-08-18 01:23:19 -0500
committerGitHub <noreply@github.com>2020-08-18 08:23:19 +0200
commite194cb41a4502d3d8b5e4426fbd72e8d80513c3b (patch)
tree236cdad9cc77c9d1036b748de3a5ddca1a0e5e35 /compiler/jsgen.nim
parente9df8ebcfd475a715756d24e1718a5c1455689d2 (diff)
downloadNim-e194cb41a4502d3d8b5e4426fbd72e8d80513c3b.tar.gz
fix overloading issue with generic invocation (#15135)
* fix overloading issue with generic alias

* add test for inheritance depth
Diffstat (limited to 'compiler/jsgen.nim')
0 files changed, 0 insertions, 0 deletions
changelog.md?h=devel&id=9140f8e2212c91347704cec0f98c0345ddf0ea1e'>^
379299a5a ^
0613537ca ^





e4522dc87 ^
91ce8c385 ^
779bc8474 ^

4867931af ^

3a55bae53 ^

570deb10d ^

09dcff71c ^






c314155fb ^












a6595e5b4 ^








21771765a ^








a6595e5b4 ^
3a55bae53 ^
7d17cd34b ^
50e98e6ef ^
e1702ae1e ^
dd57410af ^
a38e3dcb1 ^
b60f15e0d ^
0e45b01b2 ^
f562a5c55 ^
e1702ae1e ^
e1702ae1e ^
8f7aedb3d ^
4faa15f3a ^
285cbcb6a ^
8f7aedb3d ^
d77ea0783 ^

f0865fa69 ^
6fee2240c ^
59c65009a ^


4e7c70fd7 ^
4faa15f3a ^





e53c66ef3 ^
ae4645e8d ^
f8e64d879 ^
a8d55fdec ^
8e8231f9d ^
ae4645e8d ^
1b5e03f97 ^

b70fd0400 ^
5163fe7d8 ^
59c65009a ^
da7670c8e ^
d70a9957e ^

76763f51a ^
0613537ca ^












770f8d551 ^






59c65009a ^
4b1a84170 ^
0c3573e4a ^
770f8d551 ^

4b1a84170 ^


770f8d551 ^
4b1a84170 ^




770f8d551 ^
4b1a84170 ^

770f8d551 ^





0c3573e4a ^
4b1a84170 ^










770f8d551 ^
770f8d551 ^











4b1a84170 ^

0c890ff9a ^
770f8d551 ^



0c890ff9a ^
0c3573e4a ^



























7d17cd34b ^
e47c3987c ^
8761599aa ^
50e98e6ef ^
691026f50 ^
a236002e5 ^
fb7acd660 ^

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
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220