From 83fcebf3210b638d9f8248e0007e9f0c9804980a Mon Sep 17 00:00:00 2001 From: "Kartik K. Agaram" Date: Mon, 13 Jul 2015 20:53:41 -0700 Subject: 1778 --- html/065duplex_list.mu.html | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) (limited to 'html/065duplex_list.mu.html') diff --git a/html/065duplex_list.mu.html b/html/065duplex_list.mu.html index 4a573e6e..4f892745 100644 --- a/html/065duplex_list.mu.html +++ b/html/065duplex_list.mu.html @@ -13,14 +13,14 @@ pre { white-space: pre-wrap; font-family: monospace; color: #eeeeee; background-color: #080808; } body { font-family: monospace; color: #eeeeee; background-color: #080808; } * { font-size: 1.05em; } -.muScenario { color: #00af00; } +.muRecipe { color: #ff8700; } .Delimiter { color: #a04060; } +.muScenario { color: #00af00; } .Comment { color: #9090ff; } .Constant { color: #00a0a0; } .Special { color: #ff6060; } .CommentedCode { color: #6c6c6c; } .muControl { color: #c0a020; } -.muRecipe { color: #ff8700; } --> @@ -42,7 +42,7 @@ container duplex-list [ # result:address:duplex-list <- push-duplex x:location, in:address:duplex-list recipe push-duplex [ - default-space:address:array:location <- new location:type, 30:literal + new-default-space x:location <- next-ingredient in:address:duplex-list <- next-ingredient result:address:duplex-list <- new duplex-list:type @@ -58,7 +58,7 @@ container duplex-list [ # result:location <- first-duplex in:address:duplex-list recipe first-duplex [ - default-space:address:array:location <- new location:type, 30:literal + new-default-space in:address:duplex-list <- next-ingredient reply-unless in:address:duplex-list, 0:literal result:location <- get in:address:duplex-list/deref, value:offset @@ -67,7 +67,7 @@ container duplex-list [ # result:address:duplex-list <- next-duplex in:address:duplex-list recipe next-duplex [ - default-space:address:array:location <- new location:type, 30:literal + new-default-space in:address:duplex-list <- next-ingredient reply-unless in:address:duplex-list, 0:literal result:address:duplex-list <- get in:address:duplex-list/deref, next:offset @@ -76,7 +76,7 @@ container duplex-list [ # result:address:duplex-list <- prev-duplex in:address:duplex-list recipe prev-duplex [ - default-space:address:array:location <- new location:type, 30:literal + new-default-space in:address:duplex-list <- next-ingredient reply-unless in:address:duplex-list, 0:literal result:address:duplex-list <- get in:address:duplex-list/deref, prev:offset @@ -129,7 +129,7 @@ container duplex-list [ # l:address:duplex-list <- insert-duplex x:location, in:address:duplex-list # Inserts 'x' after 'in'. Returns some pointer into the list. recipe insert-duplex [ - default-space:address:array:location <- new location:type, 30:literal + new-default-space x:location <- next-ingredient in:address:duplex-list <- next-ingredient new-node:address:duplex-list <- new duplex-list:type @@ -271,7 +271,7 @@ container duplex-list [ # Returns null if and only if list is empty. Beware: in that case any pointers # to the head are now invalid. recipe remove-duplex [ - default-space:address:array:location <- new location:type, 30:literal + new-default-space in:address:duplex-list <- next-ingredient # if 'in' is null, return reply-unless in:address:duplex-list, in:address:duplex-list -- cgit 1.4.1-2-gfad0