Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | 1076 | Kartik K. Agaram | 2015-04-17 | 1 | -2/+5 |
| | |||||
* | 1075 | Kartik K. Agaram | 2015-04-17 | 68 | -174/+157 |
| | |||||
* | 1074 | Kartik K. Agaram | 2015-04-17 | 31 | -52/+52 |
| | |||||
* | 1073 - stop fixing the values of primitive recipes | Kartik K. Agaram | 2015-04-17 | 14 | -163/+102 |
| | | | | | In the process I give up trace stability when I move files around, but I gain in exchange the ability to move files around. | ||||
* | 1072 | Kartik K. Agaram | 2015-04-17 | 20 | -0/+0 |
| | |||||
* | 1071 | Kartik K. Agaram | 2015-04-16 | 1 | -0/+0 |
| | |||||
* | 1070 | Kartik K. Agaram | 2015-04-16 | 1 | -0/+4 |
| | |||||
* | 1069 - rename record/field to container/element | Kartik K. Agaram | 2015-04-16 | 12 | -48/+61 |
| | | | | | | | | | This seems more obvious to laypeople. I've also come up with a design for sum types: I'm going to call them exclusive containers. You call 'get' on containers, 'index' on arrays, and 'maybe-convert' on exclusive containers (as well as tagged types, but that's even later). | ||||
* | 1068 - better line numbers | Kartik K. Agaram | 2015-04-15 | 2 | -9/+90 |
| | | | | | Line numbers were broken after inserting some lines from elsewhere. Now we add a #line directive not just before the lines but also after. | ||||
* | 1067 - no need to indent methods anymore | Kartik K. Agaram | 2015-04-15 | 2 | -51/+50 |
| | |||||
* | 1066 - bugfix: support string literals with colons | Kartik K. Agaram | 2015-04-15 | 5 | -13/+38 |
| | |||||
* | 1065 - example program for closures | Kartik K. Agaram | 2015-04-14 | 2 | -3/+35 |
| | |||||
* | 1064 - rough support for correct line numbers in error messages | Kartik K. Agaram | 2015-04-14 | 2 | -0/+42 |
| | |||||
* | 1063 - variable names for surrounding spaces now work | Kartik K. Agaram | 2015-04-14 | 19 | -16/+320 |
| | | | | This was a pain to debug. | ||||
* | 1062 - bugfix: wasn't aliasing Current_routine | Kartik K. Agaram | 2015-04-14 | 5 | -14/+15 |
| | | | | You can't write tests for stupidity. | ||||
* | 1061 | Kartik K. Agaram | 2015-04-14 | 2 | -0/+28 |
| | |||||
* | 1060 | Kartik K. Agaram | 2015-04-14 | 2 | -6/+5 |
| | |||||
* | 1059 | Kartik K. Agaram | 2015-04-13 | 1 | -0/+6 |
| | |||||
* | 1058 - scenarios can now check trace | Kartik K. Agaram | 2015-04-12 | 6 | -0/+160 |
| | |||||
* | 1057 | Kartik K. Agaram | 2015-04-12 | 2 | -8/+10 |
| | |||||
* | 1056 | Kartik K. Agaram | 2015-04-12 | 1 | -0/+9 |
| | |||||
* | 1055 | Kartik K. Agaram | 2015-04-12 | 4 | -11/+8 |
| | |||||
* | 1054 | Kartik K. Agaram | 2015-04-12 | 2 | -0/+11 |
| | |||||
* | 1053 - vim highlighting works even when reloading a layer | Kartik K. Agaram | 2015-04-12 | 1 | -3/+1 |
| | |||||
* | 1052 | Kartik K. Agaram | 2015-04-12 | 6 | -7/+7 |
| | |||||
* | 1051 | Kartik K. Agaram | 2015-04-12 | 5 | -12/+12 |
| | |||||
* | 1050 | Kartik K. Agaram | 2015-04-11 | 6 | -108/+126 |
| | |||||
* | 1049 | Kartik K. Agaram | 2015-04-11 | 1 | -1/+7 |
| | |||||
* | 1048 | Kartik K. Agaram | 2015-04-11 | 1 | -14/+7 |
| | |||||
* | 1047 | Kartik K. Agaram | 2015-04-11 | 1 | -0/+2 |
| | |||||
* | 1046 - mu programs can now add to the trace | Kartik K. Agaram | 2015-04-09 | 2 | -0/+28 |
| | | | | Still just raw strings, but interpolation is coming. | ||||
* | 1045 | Kartik K. Agaram | 2015-04-09 | 24 | -41/+43 |
| | |||||
* | 1044 | Kartik K. Agaram | 2015-04-09 | 1 | -0/+0 |
| | |||||
* | 1043 - clean up indent in generated mu.cc | Kartik K. Agaram | 2015-04-08 | 4 | -13/+13 |
| | |||||
* | 1042 - start saving traces in mu scenarios | Kartik K. Agaram | 2015-04-08 | 6 | -1/+793 |
| | |||||
* | 1041 - why was I clearing name assignments? | Kartik K. Agaram | 2015-04-08 | 1 | -2/+0 |
| | |||||
* | 1040 | Kartik K. Agaram | 2015-04-08 | 1 | -2/+2 |
| | |||||
* | 1039 | Kartik K. Agaram | 2015-04-08 | 4 | -5/+6 |
| | |||||
* | 1038 - clean up layer organization a little | Kartik K. Agaram | 2015-04-08 | 5 | -22/+25 |
| | | | | | Things are quite intricate to avoid reloading all recipes before every test. But mu wasn't really intended to sidestep intrinsic intricacy. | ||||
* | 1037 - support scenarios in mu files | Kartik K. Agaram | 2015-04-08 | 2 | -14/+116 |
| | | | | | | I'd forgotten that I hadn't yet committed this change in my comment to commit 1031. Now if I don't freeze things after loading the string-equal tests do fail as expected because the recipe was deleted. | ||||
* | 1036 | Kartik K. Agaram | 2015-04-08 | 1 | -0/+1 |
| | |||||
* | 1035 | Kartik K. Agaram | 2015-04-08 | 2 | -2/+2 |
| | |||||
* | 1034 - more test isolation | Kartik K. Agaram | 2015-04-08 | 3 | -2/+6 |
| | | | | The layers are a mess now, but we'll take care of that later. | ||||
* | 1033 - clear any new name tables created in each test | Kartik K. Agaram | 2015-04-08 | 1 | -1/+5 |
| | |||||
* | 1032 - stop clearing types after every test | Kartik K. Agaram | 2015-04-08 | 1 | -1/+1 |
| | |||||
* | 1031 - stop clearing recipes after every test | Kartik K. Agaram | 2015-04-08 | 4 | -5/+16 |
| | | | | | I think the string-equal scenarios are failing to fail. But we'll fix them once we wrap up test isolation. | ||||
* | 1030 - better test isolation for break/loop | Kartik K. Agaram | 2015-04-07 | 25 | -32/+76 |
| | | | | | | | I've been resetting all recipes after every single test, but the arc version has shown that this gets slow all too quickly. And the longer I wait to fix it the harder it gets to fix. Already, boy, were this and the next couple of commits hard to track down. | ||||
* | 1029 | Kartik K. Agaram | 2015-04-07 | 1 | -0/+4 |
| | |||||
* | 1028 - now actually test every single layer | Kartik K. Agaram | 2015-04-06 | 1 | -5/+3 |
| | | | | In the process, test_all actually got *simpler*. | ||||
* | 1027 - reorg includes | Kartik K. Agaram | 2015-04-06 | 4 | -52/+10 |
| |