From a802f0cedc7b5580d746f46ae62fcf8074ae3c49 Mon Sep 17 00:00:00 2001 From: "Kartik K. Agaram" Date: Thu, 2 Mar 2017 04:41:24 -0800 Subject: 3749 --- html/026call.cc.html | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'html/026call.cc.html') diff --git a/html/026call.cc.html b/html/026call.cc.html index 7532dfb8..aeaefb47 100644 --- a/html/026call.cc.html +++ b/html/026call.cc.html @@ -122,7 +122,7 @@ if ('onhashchange' in window) { 60 routine::routine(recipe_ordinal r) { 61 if (Trace_stream) { 62 ++Trace_stream->callstack_depth; - 63 trace(9999, "trace") << "new routine; incrementing callstack depth to " << Trace_stream->callstack_depth << end(); + 63 trace(9999, "trace") << "new routine; incrementing callstack depth to " << Trace_stream->callstack_depth << end(); 64 assert(Trace_stream->callstack_depth < 9000); // 9998-101 plus cushion 65 } 66 calls.push_front(call(r)); @@ -164,13 +164,13 @@ if ('onhashchange' in window) { 102 :(after "Defined Recipe Checks") 103 // not a primitive; check that it's present in the book of recipes 104 if (!contains_key(Recipe, inst.operation)) { -105 raise << maybe(get(Recipe, r).name) << "undefined operation in '" << inst.original_string << "'\n" << end(); +105 raise << maybe(get(Recipe, r).name) << "undefined operation in '" << inst.original_string << "'\n" << end(); 106 break; 107 } 108 :(replace{} "default:" following "End Primitive Recipe Implementations") 109 default: { 110 const instruction& call_instruction = current_instruction(); -111 if (Recipe.find(current_instruction().operation) == Recipe.end()) { // duplicate from Checks +111 if (Recipe.find(current_instruction().operation) == Recipe.end()) { // duplicate from Checks 112 // stop running this instruction immediately 113 ++current_step_index(); 114 continue; @@ -178,7 +178,7 @@ if ('onhashchange' in window) { 116 // not a primitive; look up the book of recipes 117 if (Trace_stream) { 118 ++Trace_stream->callstack_depth; -119 trace(9999, "trace") << "incrementing callstack depth to " << Trace_stream->callstack_depth << end(); +119 trace(9999, "trace") << "incrementing callstack depth to " << Trace_stream->callstack_depth << end(); 120 assert(Trace_stream->callstack_depth < 9000); // 9998-101 plus cushion 121 } 122 Current_routine->calls.push_front(call(current_instruction().operation)); @@ -223,7 +223,7 @@ if ('onhashchange' in window) { 161 while (current_step_index() >= SIZE(Current_routine->steps())) { 162 // Falling Through End Of Recipe 163 if (Trace_stream) { -164 trace(9999, "trace") << "fall-through: exiting " << current_recipe_name() << "; decrementing callstack depth from " << Trace_stream->callstack_depth << end(); +164 trace(9999, "trace") << "fall-through: exiting " << current_recipe_name() << "; decrementing callstack depth from " << Trace_stream->callstack_depth << end(); 165 --Trace_stream->callstack_depth; 166 assert(Trace_stream->callstack_depth >= 0); 167 } -- cgit 1.4.1-2-gfad0