From 2b25071710656d7a755c2f66c99734cd7990d1ba Mon Sep 17 00:00:00 2001 From: "Kartik K. Agaram" Date: Fri, 26 May 2017 16:43:18 -0700 Subject: 3877 --- html/071recipe.cc.html | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'html/071recipe.cc.html') diff --git a/html/071recipe.cc.html b/html/071recipe.cc.html index abc13fff..c1fc9e30 100644 --- a/html/071recipe.cc.html +++ b/html/071recipe.cc.html @@ -233,14 +233,14 @@ if ('onhashchange' in window) { 169 ¦ if (is_indirect_call_with_ingredients(inst.operation)) { 170 ¦ ¦ for (long int i = /*skip callee*/1; i < min(SIZE(inst.ingredients), SIZE(callee_header.ingredients)+/*skip callee*/1); ++i) { 171 ¦ ¦ ¦ if (!types_coercible(callee_header.ingredients.at(i-/*skip callee*/1), inst.ingredients.at(i))) -172 ¦ ¦ ¦ ¦ raise << maybe(caller.name) << "ingredient " << i-/*skip callee*/1 << " has the wrong type at '" << inst.original_string << "'\n" << end(); +172 ¦ ¦ ¦ ¦ raise << maybe(caller.name) << "ingredient " << i-/*skip callee*/1 << " has the wrong type at '" << to_original_string(inst) << "'\n" << end(); 173 ¦ ¦ } 174 ¦ } 175 ¦ if (is_indirect_call_with_products(inst.operation)) { 176 ¦ ¦ for (long int i = 0; i < min(SIZE(inst.products), SIZE(callee_header.products)); ++i) { 177 ¦ ¦ ¦ if (is_dummy(inst.products.at(i))) continue; 178 ¦ ¦ ¦ if (!types_coercible(callee_header.products.at(i), inst.products.at(i))) -179 ¦ ¦ ¦ ¦ raise << maybe(caller.name) << "product " << i << " has the wrong type at '" << inst.original_string << "'\n" << end(); +179 ¦ ¦ ¦ ¦ raise << maybe(caller.name) << "product " << i << " has the wrong type at '" << to_original_string(inst) << "'\n" << end(); 180 ¦ ¦ } 181 ¦ } 182 } @@ -420,7 +420,7 @@ if ('onhashchange' in window) { 356 void check_for_recipe_literals(const instruction& inst, const recipe& caller) { 357 for (int i = 0; i < SIZE(inst.ingredients); ++i) { 358 ¦ if (is_mu_recipe(inst.ingredients.at(i))) { -359 ¦ ¦ raise << maybe(caller.name) << "missing type for '" << inst.ingredients.at(i).original_string << "' in '" << inst.original_string << "'\n" << end(); +359 ¦ ¦ raise << maybe(caller.name) << "missing type for '" << inst.ingredients.at(i).original_string << "' in '" << to_original_string(inst) << "'\n" << end(); 360 ¦ ¦ if (is_present_in_ingredients(caller, inst.ingredients.at(i).name)) 361 ¦ ¦ ¦ raise << " did you forget 'load-ingredients'?\n" << end(); 362 ¦ } -- cgit 1.4.1-2-gfad0