about summary refs log tree commit diff stats
path: root/042name.cc
diff options
context:
space:
mode:
authorKartik K. Agaram <vc@akkartik.com>2016-08-25 10:26:21 -0700
committerKartik K. Agaram <vc@akkartik.com>2016-08-25 10:26:21 -0700
commit1a6c5a0d489297a3235b7daf18fea8ef71875530 (patch)
tree109c7bc5084fc600423ddbfef2c86bd19bfa48d7 /042name.cc
parentf385814f3ddbff620642e0986a421ed5fd13ef76 (diff)
downloadmu-1a6c5a0d489297a3235b7daf18fea8ef71875530.tar.gz
3248
Diffstat (limited to '042name.cc')
-rw-r--r--042name.cc3
1 files changed, 2 insertions, 1 deletions
diff --git a/042name.cc b/042name.cc
index eeebe3da..2711b94d 100644
--- a/042name.cc
+++ b/042name.cc
@@ -50,6 +50,7 @@ void transform_names(const recipe_ordinal r) {
     // map names to addresses
     for (int in = 0; in < SIZE(inst.ingredients); ++in) {
       reagent& ingredient = inst.ingredients.at(in);
+      // Begin transform_names Ingredient Special-cases(ingredient, inst, caller)
       if (is_disqualified(ingredient, inst, caller.name)) continue;
       if (is_numeric_location(ingredient)) numeric_locations_used = true;
       if (is_named_location(ingredient)) names_used = true;
@@ -70,6 +71,7 @@ void transform_names(const recipe_ordinal r) {
     }
     for (int out = 0; out < SIZE(inst.products); ++out) {
       reagent& product = inst.products.at(out);
+      // Begin transform_names Product Special-cases(product, inst, caller)
       if (is_disqualified(product, inst, caller.name)) continue;
       if (is_numeric_location(product)) numeric_locations_used = true;
       if (is_named_location(product)) names_used = true;
@@ -96,7 +98,6 @@ void transform_names(const recipe_ordinal r) {
 
 bool is_disqualified(/*mutable*/ reagent& x, const instruction& inst, const string& recipe_name) {
   if (!x.type) {
-    // End Null-type is_disqualified Exceptions
     raise << maybe(recipe_name) << "missing type for '" << x.original_string << "' in '" << inst.original_string << "'\n" << end();
     return true;
   }