summary refs log tree commit diff stats
path: root/compiler/enumtostr.nim
Commit message (Expand)AuthorAgeFilesLines
* types refactoring; WIP (#23086)Andreas Rumpf2023-12-171-1/+1
* Types: Refactorings; step 1 (#23055)Andreas Rumpf2023-12-121-1/+1
* IC: progress and refactorings (#22961)Andreas Rumpf2023-11-201-2/+2
* use strictdefs for compiler (#22365)ringabout2023-08-061-0/+1
* refactoring in preparation for better, simpler name mangling that wor… (#21...Andreas Rumpf2023-04-241-6/+6
* refactorings (#20536)Andreas Rumpf2022-10-101-1/+1
* move assertions out of system (#19599)flywind2022-03-231-0/+4
* big steps torwards an efficient, simple IC implementation (#16543)Andreas Rumpf2021-01-021-8/+8
* explicit ID generation for easier IC (#15559)Andreas Rumpf2020-10-251-10/+10
* rename sfAlwaysReturn to sfNeverRaisesAraq2020-03-161-2/+2
* catchable defects (#13626)Andreas Rumpf2020-03-121-0/+2
* fixes #12821 (#12822)cooldome2019-12-061-5/+10
* Cosmetic compiler cleanup (#12718)Clyybber2019-11-281-15/+15
* fixes #11205Araq2019-05-281-0/+56
* more efficient enumToStr implementation that works without the old typeinfo s...Andreas Rumpf2019-04-071-0/+42
0 -0400 Add NEP1 to documentation.' href='/ahoang/Nim/commit/doc/nep1.txt?h=devel&id=9da1ee4fe40a2c40ef55c4a4002373b903a386d0'>9da1ee4fe ^
b938a5b88 ^

9da1ee4fe ^
b938a5b88 ^
9da1ee4fe ^


19c436ab2 ^

b938a5b88 ^
9da1ee4fe ^



19c436ab2 ^





b938a5b88 ^
9da1ee4fe ^



19c436ab2 ^





b938a5b88 ^
9da1ee4fe ^
b938a5b88 ^


9da1ee4fe ^




b938a5b88 ^


9da1ee4fe ^
b938a5b88 ^





9da1ee4fe ^



b938a5b88 ^

9da1ee4fe ^


9da1ee4fe ^



b938a5b88 ^

9da1ee4fe ^


b938a5b88 ^

9da1ee4fe ^
b938a5b88 ^

9da1ee4fe ^


b938a5b88 ^

9da1ee4fe ^
11d026501 ^
9da1ee4fe ^

b938a5b88 ^


9da1ee4fe ^

9da1ee4fe ^
b938a5b88 ^
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