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/072scheduler.cc.html | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'html/072scheduler.cc.html') diff --git a/html/072scheduler.cc.html b/html/072scheduler.cc.html index ceba7d11..302cfe20 100644 --- a/html/072scheduler.cc.html +++ b/html/072scheduler.cc.html @@ -523,7 +523,7 @@ if ('onhashchange' in window) { 458 :(before "End Primitive Recipe Checks") 459 case ROUTINE_STATE: { 460 if (SIZE(inst.ingredients) != 1) { -461 ¦ raise << maybe(get(Recipe, r).name) << "'routine-state' requires exactly one ingredient, but got '" << inst.original_string << "'\n" << end(); +461 ¦ raise << maybe(get(Recipe, r).name) << "'routine-state' requires exactly one ingredient, but got '" << to_original_string(inst) << "'\n" << end(); 462 ¦ break; 463 } 464 if (!is_mu_number(inst.ingredients.at(0))) { @@ -556,7 +556,7 @@ if ('onhashchange' in window) { 491 :(before "End Primitive Recipe Checks") 492 case STOP: { 493 if (SIZE(inst.ingredients) != 1) { -494 ¦ raise << maybe(get(Recipe, r).name) << "'stop' requires exactly one ingredient, but got '" << inst.original_string << "'\n" << end(); +494 ¦ raise << maybe(get(Recipe, r).name) << "'stop' requires exactly one ingredient, but got '" << to_original_string(inst) << "'\n" << end(); 495 ¦ break; 496 } 497 if (!is_mu_number(inst.ingredients.at(0))) { @@ -654,7 +654,7 @@ if ('onhashchange' in window) { 589 :(before "End Primitive Recipe Checks") 590 case LIMIT_TIME: { 591 if (SIZE(inst.ingredients) != 2) { -592 ¦ raise << maybe(get(Recipe, r).name) << "'limit-time' requires exactly two ingredient, but got '" << inst.original_string << "'\n" << end(); +592 ¦ raise << maybe(get(Recipe, r).name) << "'limit-time' requires exactly two ingredient, but got '" << to_original_string(inst) << "'\n" << end(); 593 ¦ break; 594 } 595 if (!is_mu_number(inst.ingredients.at(0))) { @@ -692,7 +692,7 @@ if ('onhashchange' in window) { 627 :(before "End Primitive Recipe Checks") 628 case NUMBER_OF_INSTRUCTIONS: { 629 if (SIZE(inst.ingredients) != 1) { -630 ¦ raise << maybe(get(Recipe, r).name) << "'number-of-instructions' requires exactly one ingredient, but got '" << inst.original_string << "'\n" << end(); +630 ¦ raise << maybe(get(Recipe, r).name) << "'number-of-instructions' requires exactly one ingredient, but got '" << to_original_string(inst) << "'\n" << end(); 631 ¦ break; 632 } 633 if (!is_mu_number(inst.ingredients.at(0))) { -- cgit 1.4.1-2-gfad0