about summary refs log tree commit diff stats
Commit message (Collapse)AuthorAgeFilesLines
* 763 - start of C++ versionKartik K. Agaram2015-02-166-0/+670
|
* 761 - now 30% faster than 758Kartik K. Agaram2015-02-161-72/+72
| | | | 4:26 compared to 6:20 on my laptop.
* 760Kartik K. Agaram2015-02-162-73/+77
| | | | This speeds up the final test but not all together.
* 759 - trace.arc.t 13% fasterKartik K. Agaram2015-02-162-7/+4
| | | | Something wrong with my profiling, though. Numbers aren't adding up.
* 758Kartik K. Agaram2015-02-161-5/+5
|
* 757 - collapse now kinda workingKartik K. Agaram2015-02-163-22/+90
| | | | | Tests are getting slow so quickly that I'm tempted to push forward the rewrite to C.
* 756 - first scenario for collapseKartik K. Agaram2015-02-162-28/+103
|
* 755 - cursor can only lie on top-level linesKartik K. Agaram2015-02-162-0/+138
| | | | | | | | This allows the initial model of a trace to have just one new number: the currently expanded row. We'll make it more flexible later if we feel the need. Still no collapsing lines, though. But we're getting there.
* 754 - traces are part of screen stateKartik K. Agaram2015-02-162-18/+17
|
* 753Kartik K. Agaram2015-02-151-0/+2
|
* 752Kartik K. Agaram2015-02-151-4/+4
|
* 751 - newest trace test now passingKartik K. Agaram2015-02-152-5/+14
|
* 750Kartik K. Agaram2015-02-152-13/+11
|
* 749 - cleaner screen testsKartik K. Agaram2015-02-151-0/+55
|
* 748Kartik K. Agaram2015-02-153-13/+60
|
* 747Kartik K. Agaram2015-02-152-8/+2
| | | | This bugfix is not tested yet, but that's in the works.
* 746 - toggle a set of lines by hitting enter twiceKartik K. Agaram2015-02-122-0/+42
| | | | This just supports it, but we don't actually have collapse yet.
* 745 - first test of expand functionalityKartik K. Agaram2015-02-111-0/+72
| | | | | | | | | | Expanding trace items, of course, doesn't work on anything but the last item. But we've now caught automatic tests up to the state of development. These tests are hugely expensive. Previous .t files run in ~30s. Already the trace browser tests clock in at 2 minutes. And we're just getting started. Time to explore reimplementing the mu VM in C.
* 744 - test cursor movement in trace browserKartik K. Agaram2015-02-113-4/+211
| | | | | | Don't prevent run-code from clobbering existing functions, but warn because it makes traces easier to read if the different sections of a test can be distinguished.
* 743Kartik K. Agaram2015-02-111-9/+20
|
* 742 - turns out chessboard test logs were incompleteKartik K. Agaram2015-02-113-20/+26
| | | | | Now that we aren't loading system software for every test we can afford to log the loading of test functions.
* 740Kartik K. Agaram2015-02-102-4/+58
|
* 739Kartik K. Agaram2015-02-102-15/+7
|
* 738Kartik K. Agaram2015-02-101-12/+19
|
* 737Kartik K. Agaram2015-02-101-31/+49
|
* 736Kartik K. Agaram2015-02-101-4/+4
|
* 735Kartik K. Agaram2015-02-101-1/+1
|
* 734Kartik K. Agaram2015-02-102-11/+25
|
* 733Kartik K. Agaram2015-02-101-19/+62
|
* 732Kartik K. Agaram2015-02-101-0/+2
|
* 731Kartik K. Agaram2015-02-102-4/+37
|
* 730 - first test for trace browserKartik K. Agaram2015-02-103-25/+94
| | | | | This was painless compared to the chessboard app. Still need to handle input, though. Fingers crossed..
* 729Kartik K. Agaram2015-02-101-8/+8
|
* 728 - move up/down and expand trace at cursorKartik K. Agaram2015-02-091-4/+40
| | | | | | | Expand isn't anywhere near working, but already I like how the browser returns to the commandline when exiting, without causing a mental context switch. Little details like moving the cursor to the bottom before quitting.
* 727 - start of a trace browserKartik K. Agaram2015-02-091-3/+44
| | | | We can now collapse trace items, and we have a rudimentary event loop.
* 726Kartik K. Agaram2015-02-091-2/+2
|
* 725 - now support cursor movementKartik K. Agaram2015-02-091-0/+8
| | | | This had been on hold for some time; dependencies are crutches.
* 724 - stop using charterm for printing textKartik K. Agaram2015-02-091-19/+12
| | | | | | | We'll keep it around for keyboard input now, for the nice scancode names. Ansi escape codes from http://tldp.org/HOWTO/Bash-Prompt-HOWTO/x361.html
* 723 - now trace.mu works on correct tracesKartik K. Agaram2015-02-081-14/+16
|
* 722 - split at substring, and assorted helpersKartik K. Agaram2015-02-082-1/+120
|
* 721Kartik K. Agaram2015-02-081-6/+6
|
* 720 - substring matching and searchingKartik K. Agaram2015-02-082-5/+231
|
* 718 - disable raw memory warnings in testsKartik K. Agaram2015-02-085-8/+15
|
* 717Kartik K. Agaram2015-02-081-0/+1
|
* 716 - warn when writing to raw memoryKartik K. Agaram2015-02-081-0/+17
|
* 715 - support metadata in top-level namesKartik K. Agaram2015-02-081-1/+12
|
* 714Kartik K. Agaram2015-02-081-8/+11
| | | | Just forget about unicode for now.
* 713 - quick 'n' dirty trace parserKartik K. Agaram2015-02-082-1/+244
| | | | Doesn't quite work yet; I can't have spaces after labels.
* 712Kartik K. Agaram2015-02-072-0/+34
|
* 711 - extract method: string-copyKartik K. Agaram2015-02-072-25/+40
|