From 104e521c04d1a0cad9c68fb11e250e12ad8917ef Mon Sep 17 00:00:00 2001 From: Kartik Agaram Date: Wed, 17 Oct 2018 07:08:47 -0700 Subject: 4709 --- html/026call.cc.html | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) (limited to 'html/026call.cc.html') diff --git a/html/026call.cc.html b/html/026call.cc.html index eb8d34c2..3d5c2634 100644 --- a/html/026call.cc.html +++ b/html/026call.cc.html @@ -126,7 +126,7 @@ if ('onhashchange' in window) { 62 routine::routine(recipe_ordinal r) { 63 if (Trace_stream) { 64 ++Trace_stream->callstack_depth; - 65 trace("trace") << "new routine; incrementing callstack depth to " << Trace_stream->callstack_depth << end(); + 65 trace("trace") << "new routine; incrementing callstack depth to " << Trace_stream->callstack_depth << end(); 66 assert(Trace_stream->callstack_depth < 9000); // 9998-101 plus cushion 67 } 68 calls.push_front(call(r)); @@ -201,14 +201,14 @@ if ('onhashchange' in window) { 137 void dump_callstack() { 138 if (!Current_routine) return; 139 if (Current_routine->calls.size() <= 1) return; -140 for (call_stack::const_iterator p = ++Current_routine->calls.begin(); p != Current_routine->calls.end(); ++p) -141 raise << " called from " << get(Recipe, p->running_recipe).name << ": " << to_original_string(to_instruction(*p)) << '\n' << end(); +140 for (call_stack::const_iterator p = ++Current_routine->calls.begin(); p != Current_routine->calls.end(); ++p) +141 raise << " called from " << get(Recipe, p->running_recipe).name << ": " << to_original_string(to_instruction(*p)) << '\n' << end(); 142 } 143 144 :(after "Defined Recipe Checks") 145 // not a primitive; check that it's present in the book of recipes 146 if (!contains_key(Recipe, inst.operation)) { -147 raise << maybe(get(Recipe, r).name) << "undefined operation in '" << to_original_string(inst) << "'\n" << end(); +147 raise << maybe(get(Recipe, r).name) << "undefined operation in '" << to_original_string(inst) << "'\n" << end(); 148 break; 149 } 150 :(replace{} "default:" following "End Primitive Recipe Implementations") @@ -217,7 +217,7 @@ if ('onhashchange' in window) { 153 // not a primitive; look up the book of recipes 154 if (Trace_stream) { 155 ++Trace_stream->callstack_depth; -156 trace("trace") << "incrementing callstack depth to " << Trace_stream->callstack_depth << end(); +156 trace("trace") << "incrementing callstack depth to " << Trace_stream->callstack_depth << end(); 157 assert(Trace_stream->callstack_depth < 9000); // 9998-101 plus cushion 158 } 159 const call& caller_frame = current_call(); @@ -267,7 +267,7 @@ if ('onhashchange' in window) { 203 while (current_step_index() >= SIZE(Current_routine->steps())) { 204 // Falling Through End Of Recipe 205 if (Trace_stream) { -206 trace("trace") << "fall-through: exiting " << current_recipe_name() << "; decrementing callstack depth from " << Trace_stream->callstack_depth << end(); +206 trace("trace") << "fall-through: exiting " << current_recipe_name() << "; decrementing callstack depth from " << Trace_stream->callstack_depth << end(); 207 --Trace_stream->callstack_depth; 208 assert(Trace_stream->callstack_depth >= 0); 209 } -- cgit 1.4.1-2-gfad0