From 2c678a4e1d7f97c862342ee19cf2d6ee6e901d85 Mon Sep 17 00:00:00 2001 From: "Kartik K. Agaram" Date: Mon, 29 May 2017 14:21:32 -0700 Subject: 3897 - various updates to documentation --- html/024jump.cc.html | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) (limited to 'html/024jump.cc.html') diff --git a/html/024jump.cc.html b/html/024jump.cc.html index a58b7602..9834e01c 100644 --- a/html/024jump.cc.html +++ b/html/024jump.cc.html @@ -76,10 +76,10 @@ if ('onhashchange' in window) { 12 :(before "End Primitive Recipe Declarations") 13 JUMP, 14 :(before "End Primitive Recipe Numbers") - 15 put(Recipe_ordinal, "jump", JUMP); + 15 put(Recipe_ordinal, "jump", JUMP); 16 :(before "End Primitive Recipe Checks") 17 case JUMP: { - 18 if (SIZE(inst.ingredients) != 1) { + 18 if (SIZE(inst.ingredients) != 1) { 19 ¦ raise << maybe(get(Recipe, r).name) << "'" << to_original_string(inst) << "' should get exactly one ingredient\n" << end(); 20 ¦ break; 21 } @@ -102,7 +102,7 @@ if ('onhashchange' in window) { 38 39 //: special type to designate jump targets 40 :(before "End Mu Types Initialization") - 41 put(Type_ordinal, "offset", 0); + 41 put(Type_ordinal, "offset", 0); 42 43 :(scenario jump_backward) 44 def main [ @@ -118,10 +118,10 @@ if ('onhashchange' in window) { 54 :(before "End Primitive Recipe Declarations") 55 JUMP_IF, 56 :(before "End Primitive Recipe Numbers") - 57 put(Recipe_ordinal, "jump-if", JUMP_IF); + 57 put(Recipe_ordinal, "jump-if", JUMP_IF); 58 :(before "End Primitive Recipe Checks") 59 case JUMP_IF: { - 60 if (SIZE(inst.ingredients) != 2) { + 60 if (SIZE(inst.ingredients) != 2) { 61 ¦ raise << maybe(get(Recipe, r).name) << "'" << to_original_string(inst) << "' should get exactly two ingredients\n" << end(); 62 ¦ break; 63 } @@ -174,10 +174,10 @@ if ('onhashchange' in window) { 110 :(before "End Primitive Recipe Declarations") 111 JUMP_UNLESS, 112 :(before "End Primitive Recipe Numbers") -113 put(Recipe_ordinal, "jump-unless", JUMP_UNLESS); +113 put(Recipe_ordinal, "jump-unless", JUMP_UNLESS); 114 :(before "End Primitive Recipe Checks") 115 case JUMP_UNLESS: { -116 if (SIZE(inst.ingredients) != 2) { +116 if (SIZE(inst.ingredients) != 2) { 117 ¦ raise << maybe(get(Recipe, r).name) << "'" << to_original_string(inst) << "' should get exactly two ingredients\n" << end(); 118 ¦ break; 119 } -- cgit 1.4.1-2-gfad0