summary refs log tree commit diff stats
path: root/compiler/ccgliterals.nim
Commit message (Expand)AuthorAgeFilesLines
* store full definition AST for consts, fix noRewrite (#20115)metagn2022-09-281-1/+1
* no ropes WIP (#20433)Andreas Rumpf2022-09-271-34/+39
* Removed lib/system/allocators.nim. seqs_v2 and strs_v2 now uses allocShared0....Ico Doornekamp2020-01-231-2/+2
* better support for PROGMEM like annotations for lets/vars; fixes #12216 (#12799)Andreas Rumpf2019-12-051-14/+17
* Cosmetic compiler cleanup (#12718)Clyybber2019-11-281-9/+9
* int128 on firstOrd, lastOrd and lengthOrd (#11701)Arne Döring2019-08-071-1/+3
* fixes #11048Araq2019-04-171-4/+0
* Less ropes (#10979)Arne Döring2019-04-111-1/+1
* gc:destructors: make strutils compile (but still crashes)Andreas Rumpf2019-02-221-7/+12
* gc:destructors further progressAndreas Rumpf2018-11-291-1/+1
* --gc:destructors: hello world example compiles and runsAraq2018-11-161-1/+1
* --gc:destructors: next steps; WIPAndreas Rumpf2018-07-211-3/+15
* WIP: strings/seqs based on destructorsAndreas Rumpf2018-07-171-2/+6
* C code generator compiles againAndreas Rumpf2018-05-121-3/+3
* sem pass compiles againAndreas Rumpf2018-05-121-1/+1
* implemented v2 string literalsAraq2018-04-031-2/+12
* C codegen: preparations for different seq and string implementationsAndreas Rumpf2018-04-031-0/+81
gnments are not allowed to slice object; minor breaking change' href='/ahoang/Nim/commit/changelog.md?h=devel&id=85ea9593b38351e69fedac61ff0c2b958bac4b7f'>85ea9593b ^
0872e7a27 ^
e3e17009f ^

e2094bc6f ^

4f1725ad6 ^

e2094bc6f ^
b74b16ffd ^
50d4224d4 ^


97565826e ^
6795d9931 ^


fdf1d1238 ^
6795d9931 ^
65070a693 ^


24df909d8 ^





f80501846 ^
e80be6173 ^



e3e17009f ^

cd0985df0 ^


e3e17009f ^

e2094bc6f ^

1d9343080 ^

f6c8f97fe ^

6795d9931 ^



90afb1baa ^
a075a912c ^
2107c81d6 ^

65070a693 ^
3027ca292 ^
a3e5242d3 ^
e80be6173 ^

bf5d619a5 ^

e2094bc6f ^
e3e17009f ^
212457f5e ^
5d46e1eaa ^

6baca5869 ^

3d1d163ef ^

efae36685 ^



f94fafff9 ^


4409c8222 ^

06bdf8392 ^
12996c08a ^

06122ff71 ^



fbd91a474 ^
959b6354c ^
db68bbe4f ^


06122ff71 ^
e3e17009f ^

212fdc594 ^
66780c1f4 ^
ea8afebf8 ^
c08efb4c5 ^


ea36e0ebb ^






212fdc594 ^
e3e17009f ^

a1879cae5 ^




ea8afebf8 ^
16c1a9085 ^


aded62520 ^

b0d85b0ad ^
0fad659bf ^

851d2a266 ^
1aa359feb ^
851d2a266 ^
b0d85b0ad ^
aded62520 ^
ae5c946a3 ^


cf13c5fba ^

3e5c94664 ^
b3a80dd2e ^
e3e17009f ^

500394225 ^


e3e17009f ^
91cab6dbd ^
e3037a2f3 ^



9e884c31d ^
e3037a2f3 ^

0ce28d15c ^



d7cc9016f ^
e3037a2f3 ^

ee366f174 ^





559a7615a ^


e3037a2f3 ^
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