about summary refs log tree commit diff stats
diff options
context:
space:
mode:
authorKartik K. Agaram <vc@akkartik.com>2015-11-08 21:06:48 -0800
committerKartik K. Agaram <vc@akkartik.com>2015-11-08 21:06:48 -0800
commit92e3f56ef967185f19522e698872ff61ef4ef284 (patch)
tree6413d1db97cb71b3aef2f9d29dd2c704a98d5b0c
parent1ad798a2cace11d799776850fb6ecbbe30f55a60 (diff)
downloadmu-92e3f56ef967185f19522e698872ff61ef4ef284.tar.gz
2403 - experiment: documenting non-assertions
Is that like a Maybe type in a type system? No it's more, it captures
the wistful longing of several hours spent trying to make an assertion
true. Not even by moving my phases relating to the types around could I
make this assertion true.
-rw-r--r--030container.cc2
-rw-r--r--048check_type_by_name.cc2
2 files changed, 2 insertions, 2 deletions
diff --git a/030container.cc b/030container.cc
index 186d6929..94310855 100644
--- a/030container.cc
+++ b/030container.cc
@@ -535,8 +535,8 @@ void check_or_set_invalid_types(const recipe_ordinal r) {
 }
 
 void check_or_set_invalid_types(type_tree* type, const string_tree* type_name, const string& block, const string& name) {
+  // can't assert that type_name is non-null, even at the top of a recursive call tree
   if (!type) return;  // will throw a more precise error elsewhere
-//?   cerr << "checking ";  dump_types(type, cerr);  cerr << '\n';
   // End Container Type Checks
   if (type->value == 0) {
     assert(!type->left && !type->right);
diff --git a/048check_type_by_name.cc b/048check_type_by_name.cc
index fff48395..093b7d09 100644
--- a/048check_type_by_name.cc
+++ b/048check_type_by_name.cc
@@ -14,7 +14,7 @@ recipe main [
 ]
 +error: main: x used with multiple types
 
-:(after "Transform.push_back(check_or_set_invalid_types)")
+:(before "Transform.push_back(check_or_set_invalid_types)")
 Transform.push_back(check_types_by_name);  // idempotent
 
 :(code)
n193' href='#n193'>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 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283
 id='n236' href='#n236'>236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265