From 65361948ca7975553757a0e0df4ac7352413044c Mon Sep 17 00:00:00 2001 From: "Kartik K. Agaram" Date: Thu, 14 May 2015 16:04:45 -0700 Subject: 1376 - update github docs --- html/025trace.cc.html | 20 +++++++++++++++----- 1 file changed, 15 insertions(+), 5 deletions(-) (limited to 'html/025trace.cc.html') diff --git a/html/025trace.cc.html b/html/025trace.cc.html index 7a4c5cd5..4a802550 100644 --- a/html/025trace.cc.html +++ b/html/025trace.cc.html @@ -2,7 +2,7 @@ -Mu - 025trace.cc +~/Desktop/s/mu/025trace.cc @@ -43,13 +43,23 @@ TRACE, Recipe_number["trace"] = TRACE; :(before "End Primitive Recipe Implementations") case TRACE: { - assert(isa_literal(current_instruction().ingredients[0])); - string label = current_instruction().ingredients[0].name; - assert(isa_literal(current_instruction().ingredients[1])); - string message = current_instruction().ingredients[1].name; + assert(isa_literal(current_instruction().ingredients.at(0))); + string label = current_instruction().ingredients.at(0).name; + assert(isa_literal(current_instruction().ingredients.at(1))); + string message = current_instruction().ingredients.at(1).name; trace(label) << message; break; } + +:(before "End Primitive Recipe Declarations") +HIDE_WARNINGS, +:(before "End Primitive Recipe Numbers") +Recipe_number["hide-warnings"] = HIDE_WARNINGS; +:(before "End Primitive Recipe Implementations") +case HIDE_WARNINGS: { + Hide_warnings = true; + break; +} -- cgit 1.4.1-2-gfad0