about summary refs log tree commit diff stats
path: root/011load.cc
diff options
context:
space:
mode:
authorKartik K. Agaram <vc@akkartik.com>2015-10-27 16:34:58 -0700
committerKartik K. Agaram <vc@akkartik.com>2015-10-27 16:37:57 -0700
commit6808ff7d6df42aa8a8abe63041254b40b76ba8db (patch)
tree1c5db69f17e3da1fb1241c24a3a288a42b3fc35c /011load.cc
parent9e30dba08d6475e9c26f95630b9595bea73fb705 (diff)
downloadmu-6808ff7d6df42aa8a8abe63041254b40b76ba8db.tar.gz
2293
Diffstat (limited to '011load.cc')
-rw-r--r--011load.cc6
1 files changed, 3 insertions, 3 deletions
diff --git a/011load.cc b/011load.cc
index 47829b04..7c7bded0 100644
--- a/011load.cc
+++ b/011load.cc
@@ -320,7 +320,7 @@ recipe main [
   1:number <- copy 23/foo:bar:baz
 ]
 +parse: instruction: copy
-+parse:   ingredient: {"23": "literal", "foo": <"bar" : "baz">}
++parse:   ingredient: {"23": "literal", "foo": <"bar" : <"baz" : <>>>}
 +parse:   product: {"1": "number"}
 
 :(scenario parse_multiple_products)
@@ -350,13 +350,13 @@ recipe main [
 +parse:   ingredient: {"23": "literal"}
 +parse:   ingredient: {"4": "number"}
 +parse:   product: {"1": "number"}
-+parse:   product: {"2": <"address" : "number">}
++parse:   product: {"2": <"address" : <"number" : <>>>}
 
 :(scenario parse_properties)
 recipe main [
   1:number:address/lookup <- copy 23
 ]
-+parse:   product: {"1": <"number" : "address">, "lookup": <>}
++parse:   product: {"1": <"number" : <"address" : <>>>, "lookup": <>}
 
 //: this test we can't represent with a scenario
 :(code)