about summary refs log tree commit diff stats
path: root/sandbox/010-sandbox-trace.mu
Commit message (Collapse)AuthorAgeFilesLines
* 3445Kartik K. Agaram2016-10-061-12/+12
| | | | | | | Ugly that we didn't need 'screen' to provide a type in scenarios (because assume-screen expands to a definition of 'screen') but we did need a type for 'console'. Just never require types for special names in scenarios.
* 3429 - standardize Mu scenariosKartik K. Agaram2016-09-281-16/+17
| | | | | | | | | | | | | A long-standing problem has been that I couldn't spread code across 'run' blocks because they were separate scopes, so I've ended up making them effectively comments. Running code inside a 'run' block is identical in every way to simply running the code directly. The 'run' block is merely a visual aid to separate setup from the component under test. In the process I've also standardized all Mu scenarios to always run in a local scope, and only use (raw) numeric addresses for values they want to check later.
* 3396Kartik K. Agaram2016-09-171-16/+16
|
* 3391 - type abbreviations everywhereKartik K. Agaram2016-09-171-37/+37
| | | | | | | | | Well, almost. I can't use them in some places in C++ where I'm just creating a temporary reagent without passing it through transforms. Like in some unit tests. I can't use them in memory-should-contain. And there's one remaining bug: I can't use abbreviations in a couple of places in 075channel.mu.
* 3369Kartik K. Agaram2016-09-151-12/+0
| | | | Fix some tests and make them less fragile.
* 3338Kartik K. Agaram2016-09-121-1/+1
| | | | Process type abbreviations in container definitions.
* 3337 - first use of type abbreviations: textKartik K. Agaram2016-09-121-9/+9
| | | | | In the process I've uncover a couple of situations we don't support type abbreviations yet. They're next.
* 3234Kartik K. Agaram2016-08-201-1/+5
| | | | Fix some breaking sandbox/ tests.
* 3168 - skip loading recipe 'main' in edit/Kartik K. Agaram2016-08-121-1/+1
| | | | | | | This is part of efforts to allow students to transition gradually from the sandbox to running programs directly on the commandline, writing real scenarios, etc. Running on the commandline requires 'main', but overriding 'main' would mess up edit/ which is itself a Mu program.
* 3067Kartik K. Agaram2016-06-251-1/+1
|
* 3054 - keep cursor stable on resize in sandbox/Kartik K. Agaram2016-06-121-1/+1
| | | | This ports commits 3052 and 3053 from the edit/ app.
* 3041 - fix 3039 in sandbox/ as wellKartik K. Agaram2016-06-091-0/+41
|
* 2983 - migrate buttons over to sandbox/Kartik K. Agaram2016-05-191-0/+203