Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | 2219 | Kartik K. Agaram | 2015-09-30 | 1 | -12/+4 |
| | |||||
* | 2218 - check types in instructions much earlier | Kartik K. Agaram | 2015-09-30 | 13 | -132/+177 |
| | | | | | | | | | Front-loads it a bit more than I'd like, but the payoff is that other recipes will now be able to describe the type checks right next to their operation. I'm also introducing a new use of /raw with literals to indicate unsafe typecasts. | ||||
* | 2217 | Kartik K. Agaram | 2015-09-29 | 2 | -0/+0 |
| | |||||
* | 2216 | Kartik K. Agaram | 2015-09-29 | 2 | -1/+13 |
| | |||||
* | 2215 | Kartik K. Agaram | 2015-09-29 | 1 | -1/+1 |
| | |||||
* | 2214 | Kartik K. Agaram | 2015-09-28 | 8 | -33/+39 |
| | |||||
* | 2213 - start moving type checks out of 'run' | Kartik K. Agaram | 2015-09-28 | 4 | -43/+88 |
| | | | | | That way we only have to check each static instruction once, rather than every time it runs. | ||||
* | 2212 | Kartik K. Agaram | 2015-09-28 | 1 | -6/+6 |
| | |||||
* | 2211 | Kartik K. Agaram | 2015-09-28 | 1 | -0/+0 |
| | |||||
* | 2209 | Kartik K. Agaram | 2015-09-26 | 1 | -4/+4 |
| | |||||
* | 2208 | Kartik K. Agaram | 2015-09-26 | 1 | -0/+5 |
| | |||||
* | 2207 | Kartik K. Agaram | 2015-09-26 | 1 | -1/+1 |
| | |||||
* | 2206 - fix missing ingredients | Kartik K. Agaram | 2015-09-26 | 3 | -5/+5 |
| | | | | | How the heck was this working until now? There must be redundant moves. And was I clobbering test data? | ||||
* | 2205 - warn on missing ingredient | Kartik K. Agaram | 2015-09-18 | 2 | -1/+13 |
| | | | | ..unless you explicitly ignore the found? result. | ||||
* | 2204 | Kartik K. Agaram | 2015-09-16 | 1 | -2/+8 |
| | |||||
* | 2203 - show recipe warnings in 'mu sandbox' | Kartik K. Agaram | 2015-09-15 | 2 | -9/+8 |
| | |||||
* | 2202 - don't let editor die on syntax errors | Kartik K. Agaram | 2015-09-15 | 3 | -35/+50 |
| | | | | | Bugfix to 2186. I hadn't taken care of 'reload' as cleanly as I had 'run-interactive'. | ||||
* | 2201 | Kartik K. Agaram | 2015-09-15 | 1 | -2/+4 |
| | |||||
* | 2200 | Kartik K. Agaram | 2015-09-15 | 2 | -10/+14 |
| | |||||
* | 2199 - stop printing numbers in scientific notation | Kartik K. Agaram | 2015-09-14 | 13 | -33/+79 |
| | | | | | | | | | | | Turns out the default format for printing floating point numbers is neither 'scientific' nor 'fixed' even though those are the only two options offered. Reading the C++ standard I found out that the default (modulo locale changes) is basically the same as the printf "%g" format. And "%g" is basically the shorter of: a) %f with trailing zeros trimmed b) %e So we'll just do %f and trim trailing zeros. | ||||
* | 2197 | Kartik K. Agaram | 2015-09-14 | 1 | -1/+1 |
| | |||||
* | 2196 | Kartik K. Agaram | 2015-09-14 | 2 | -3/+1 |
| | |||||
* | 2195 | Kartik K. Agaram | 2015-09-14 | 1 | -2/+2 |
| | |||||
* | 2194 | Kartik K. Agaram | 2015-09-14 | 1 | -2/+2 |
| | |||||
* | 2193 | Kartik K. Agaram | 2015-09-14 | 1 | -2/+2 |
| | |||||
* | 2192 | Kartik K. Agaram | 2015-09-14 | 1 | -0/+1 |
| | |||||
* | 2191 | Kartik K. Agaram | 2015-09-13 | 1 | -28/+26 |
| | |||||
* | 2190 | Kartik K. Agaram | 2015-09-12 | 1 | -2/+3 |
| | |||||
* | 2189 | Kartik K. Agaram | 2015-09-12 | 1 | -1/+1 |
| | |||||
* | 2188 | Kartik K. Agaram | 2015-09-12 | 1 | -2/+2 |
| | |||||
* | 2187 | Kartik K. Agaram | 2015-09-12 | 2 | -1/+5 |
| | |||||
* | 2186 - kill the current routine on first error | Kartik K. Agaram | 2015-09-12 | 2 | -4/+35 |
| | | | | | Exception: allow run-interactive to continue even if it encounters errors in parsing its ingredient as mu code. | ||||
* | 2185 | Kartik K. Agaram | 2015-09-12 | 1 | -0/+1 |
| | |||||
* | 2184 - bugfix in trace_count | Kartik K. Agaram | 2015-09-12 | 2 | -3/+12 |
| | | | | | | | | | | | | | | | | It was reading lines like this in scenarios: -warn: f: error error as: -warn: f which was causing them to be silently ignored. Also found an insane preprocessor expansion from not parenthesizing preprocessor arguments. SIZE(end+delim) worked even when end was an integer, but it happily didn't ever get the wrong answer. | ||||
* | 2183 - environment + external editor using tmux | Kartik K. Agaram | 2015-09-12 | 20 | -19/+8346 |
| | | | | Thanks Jack and Caleb Couch for the idea. | ||||
* | 2182 | Kartik K. Agaram | 2015-09-12 | 2 | -3/+1 |
| | |||||
* | 2181 - detect shift-tab | Kartik K. Agaram | 2015-09-11 | 2 | -5/+10 |
| | | | | Does nothing useful yet, though. | ||||
* | 2180 - render the trace even if there's warnings | Kartik K. Agaram | 2015-09-10 | 2 | -1/+53 |
| | |||||
* | 2179 - undo bugfix | Kartik K. Agaram | 2015-09-10 | 2 | -1/+22 |
| | |||||
* | 2178 - don't die on divide by 0 | Kartik K. Agaram | 2015-09-10 | 1 | -6/+25 |
| | |||||
* | 2177 | Kartik K. Agaram | 2015-09-07 | 38 | -9349/+12357 |
| | |||||
* | 2176 | Kartik K. Agaram | 2015-09-06 | 2 | -3/+35 |
| | |||||
* | 2175 | Kartik K. Agaram | 2015-09-06 | 55 | -2999/+3437 |
| | |||||
* | 2174 | Kartik K. Agaram | 2015-09-06 | 1 | -1/+2 |
| | |||||
* | 2173 - 'main' for 'mu edit' running layers 1 and 2 | Kartik K. Agaram | 2015-09-06 | 1 | -1/+42 |
| | | | | | | Layer 2 provides an almost fully functioning interactive editor: $ ./mu edit/00[12]* -- abcdef | ||||
* | 2172 - 'main' for 'mu edit' running just layer 1 | Kartik K. Agaram | 2015-09-06 | 2 | -1/+14 |
| | | | | | | | | | Takes the text to render inside the editor on the commandline: $ ./mu edit/001-editor.mu -- abcdef Layer 1 has no interactivity. Just shows the text you pass in on the commandline, wrapping as you would expect. Press any key to exit. | ||||
* | 2171 - 'main' can take ingredients from the shell | Kartik K. Agaram | 2015-09-06 | 2 | -6/+39 |
| | | | | | | | | | | Ingredients of 'main' are always strings (type address:array:character), and are delineated from .mu files to load by a "--", e.g.: $ ./mu x.mu y.mu -- a b c Here 'main' must be defined in one of x.mu and y.mu, and will receive the ingredients "a", "b", and "c". | ||||
* | 2170 | Kartik K. Agaram | 2015-09-06 | 1 | -15/+22 |
| | |||||
* | 2169 | Kartik K. Agaram | 2015-09-06 | 1 | -1/+0 |
| | |||||
* | 2168 | Kartik K. Agaram | 2015-09-06 | 1 | -1/+0 |
| |