about summary refs log tree commit diff stats
path: root/apps/calls
diff options
context:
space:
mode:
authorKartik Agaram <vc@akkartik.com>2019-09-19 14:57:55 -0700
committerKartik Agaram <vc@akkartik.com>2019-09-19 15:12:50 -0700
commita9d473e22426a7636980b8266e9b48cbae3bba05 (patch)
tree9428315eb5570c68c3bc3aff2623a0a8a943eb49 /apps/calls
parent37d40d4096b5ef6f256efc2b90ea4c75883d6f59 (diff)
downloadmu-a9d473e22426a7636980b8266e9b48cbae3bba05.tar.gz
5668 - start reorg to permit syntax sugar in layers
Right now we always build the library before any apps.
Apps are where our syntax sugar translators (sigils, calls, braces) live.
So we can't use sugar in the standard library.

New idea: move all code for SubX phases into the top-level.
Perhaps we should also just build a single file rather than pipeline stages.
But for now we'll build each phase by building up to some specific layer.

This will simplify test_apps and move lots of one-off logic to a more standard
form in test_layers.

I'm also going to reorg existing layers so that we introduce each phase
at a point where it mostly only gets the helpers it needs.

This commit itself is just cleaning up some common strings. Using explicit
names for them streamlines binaries a bit.
Diffstat (limited to 'apps/calls')
-rwxr-xr-xapps/callsbin44955 -> 44930 bytes
1 files changed, 0 insertions, 0 deletions
diff --git a/apps/calls b/apps/calls
index 11179969..2ec41b22 100755
--- a/apps/calls
+++ b/apps/calls
Binary files differ
'>139 140 141 142 143 144 145 146 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