From 4a48bedcd1d708a43d43dc6259a4e45c52ea3d00 Mon Sep 17 00:00:00 2001 From: "Kartik K. Agaram" Date: Sun, 3 Dec 2017 23:25:40 -0800 Subject: 4134 - 'input' = 'ingredient' --- html/026call.cc.html | 15 +++++++++++++++ 1 file changed, 15 insertions(+) (limited to 'html/026call.cc.html') diff --git a/html/026call.cc.html b/html/026call.cc.html index 096383c6..35004151 100644 --- a/html/026call.cc.html +++ b/html/026call.cc.html @@ -269,6 +269,21 @@ if ('onhashchange' in window) { 203 // todo: fail if no products returned 204 ++current_step_index(); 205 } +206 +207 :(before "End Primitive Recipe Declarations") +208 _DUMP_CALL_STACK, +209 :(before "End Primitive Recipe Numbers") +210 put(Recipe_ordinal, "$dump-call-stack", _DUMP_CALL_STACK); +211 :(before "End Primitive Recipe Checks") +212 case _DUMP_CALL_STACK: { +213 break; +214 } +215 :(before "End Primitive Recipe Implementations") +216 case _DUMP_CALL_STACK: { +217 for (call_stack::const_reverse_iterator p = Current_routine->calls.rbegin(); p != Current_routine->calls.rend(); ++p) +218 ¦ cerr << get(Recipe, p->running_recipe).name << ":" << p->running_step_index << " -- " << to_string(to_instruction(*p)) << '\n'; +219 break; +220 } -- cgit 1.4.1-2-gfad0