summary refs log tree commit diff stats
path: root/lib/pure/ropes.nim
Commit message (Expand)AuthorAgeFilesLines
* StringStream & more stdlib modules support for JS/NimScript (#14095)hlaaftana2020-04-281-38/+39
* Deprecate DCE:on (#13839)Juan Carlos2020-04-021-2/+0
* [backport] run nimpretty on string stuffnarimiran2019-09-301-9/+9
* Fixes ropes regressions due to the not-nil strings (#8687)Dmitry Atamanov2018-08-201-9/+10
* make more tests greenAndreas Rumpf2018-08-131-64/+5
* remove deprecated stuff from the stdlib; introduce better deprecation warningsAraq2018-05-051-2/+0
* remove dead code elimination option (#7669)Jacek Sieka2018-04-231-1/+1
* fixes ropes.nim regression; make tests green againAndreas Rumpf2017-11-061-1/+1
* Stream-writer for a rope (#6603)Dmitry Atamanov2017-11-061-3/+7
* Make ropes usable in VM contextRuslan Mustakov2016-03-101-4/+9
* lib: Trim .nim files trailing whitespaceAdam Strzelecki2015-09-041-10/+10
* lib_ropes: better buffering in equalsFile, cleanupsJacek Sieka2015-04-081-63/+80
* ropes: remove more unnecessary checksJacek Sieka2015-04-031-3/+3
* ropes: make lib & compiler frmt more similar, fix out-of-bounds accesses in l...Jacek Sieka2015-04-011-14/+15
* Fix typosFederico Ceratto2015-02-151-1/+1
* make tests greenAraq2014-08-311-9/+9
* Nimrod renamed to NimAraq2014-08-281-1/+1
* big renameAraq2014-08-271-32/+34
* fix failed tests due to gcsafeAraq2014-08-121-2/+2
* Removes executable bit for text files.Grzegorz Adam Hankiewicz2013-03-161-0/+0
* first steps to explicit channels for thread communication; added mainThreadIdAraq2011-07-161-5/+5
* deprecated system.copy: use system.substr insteadAraq2011-05-141-2/+2
* tests themselves contain the expected resultAraq2011-02-201-4/+0
* inlining of the write barrier for dllsAndreas Rumpf2010-08-081-19/+23
* fixed pango/pangoutils new wrappersAndreas Rumpf2010-02-261-0/+0
* continued work on html/xmlparserrumpf_a@web.de2010-02-141-9/+0
* bugfix: rendering of case statements has been broken recently; remaining iden...Andreas Rumpf2010-02-021-3/+3
* better subscript overloadingrumpf_a@web.de2010-01-031-0/+375
#x27;when' sections in generic objects now work, so TThread[void] compiles' href='/ahoang/Nim/commit/compiler/semdata.nim?h=devel&id=72651de7103a85f68b6e86353960daf6e62b37df'>72651de71 ^
e25474154 ^

72651de71 ^
57fe3e8c4 ^
72651de71 ^
e25474154 ^
72651de71 ^
7063670a2 ^

8d19a93f1 ^
72651de71 ^

804e2ac89 ^
a0a8934a4 ^
78f37b233 ^
e5bd3b5b9 ^
9fb36bd20 ^

e25474154 ^
9fb36bd20 ^



e25474154 ^

7063670a2 ^
e25474154 ^








72651de71 ^
7063670a2 ^
e25474154 ^




7063670a2 ^
e25474154 ^
e25474154 ^








7063670a2 ^
e25474154 ^

7063670a2 ^
e25474154 ^





623fd8a8a ^
e25474154 ^
623fd8a8a ^






e25474154 ^










ade67f1ab ^
e25474154 ^



9fb36bd20 ^
99bcc233c ^
5b28d0820 ^
e25474154 ^
ade67f1ab ^
804e2ac89 ^
78f37b233 ^
9fb36bd20 ^








e25474154 ^

7063670a2 ^
e25474154 ^










5b28d0820 ^
e25474154 ^


e25474154 ^
22dc76a36 ^
e25474154 ^

e25474154 ^
22dc76a36 ^




e25474154 ^








72651de71 ^

7063670a2 ^
e25474154 ^





fdde4d3a9 ^

6023e994f ^


fdde4d3a9 ^
5b28d0820 ^




e25474154 ^
5b28d0820 ^

9fb36bd20 ^
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
221
222
223
224
225
226