about summary refs log tree commit diff stats
diff options
context:
space:
mode:
authorKartik Agaram <vc@akkartik.com>2020-02-27 16:53:32 -0800
committerKartik Agaram <vc@akkartik.com>2020-02-27 16:53:32 -0800
commitbe8799b795172414231f851975cac76e041e7d0d (patch)
tree0e6a73a01494fe84cf81315f8f54f4bbccf75545
parent510a5429ca20b14b499ab9551ddbead660b23aeb (diff)
downloadmu-be8799b795172414231f851975cac76e041e7d0d.tar.gz
6057
-rw-r--r--stats.txt10
1 files changed, 6 insertions, 4 deletions
diff --git a/stats.txt b/stats.txt
index 00597026..19b15d63 100644
--- a/stats.txt
+++ b/stats.txt
@@ -13,7 +13,7 @@ apps/tests.subx             284      137
 apps/sigils.subx           4641      896
 apps/calls.subx            1785      448
 apps/braces.subx            360      121
-apps/mu.subx (incomplete)  9053     3075
+apps/mu.subx (incomplete)  9710     3374
 
 ## Total source lines needed including libraries
                           Initial   -whitespace/comments/tests/dead code
@@ -30,7 +30,7 @@ apps/tests.subx            8519     2214
 apps/sigils.subx          10578     3043
 apps/calls.subx            9242     2388
 apps/braces.subx           8545     2111
-apps/mu.subx (incomplete) 14477     5220
+apps/mu.subx (incomplete) 14889     5691
 
 ## executable size in KB
                           Initial   -tests/dead code
@@ -47,7 +47,7 @@ apps/tests                  41        5.8
 apps/sigils                 54        9.1
 apps/calls                  47        7.1
 apps/braces                 42        5.9
-apps/mu (incomplete)       147       27.0
+apps/mu (incomplete)       155       29.0
 
 ## history of apps/mu.subx
                                                     date    commit  mu.subx   -tests/cmts  binary (KB excl. dead code)
@@ -63,5 +63,7 @@ blocks                                              Jan 29  5948     7455
 break/continue instructions                         Jan 30  5964     7871        2558        22
 cleaning up locals in the presence of early exits   Feb 9   6000     8554        2918        26
 pointer dereferencing                               Feb 20  6040     9053        3075        27
+arrays, and indexing them with a non-literal        Feb 21  6043     9199        3115        27
+user-defined types, and getting fields in them      Feb 27  6055     9710        3374        29
 
-vim:nowrap
+vim:nowrap:tw&
/a> 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 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433