diff options
author | Kartik K. Agaram <vc@akkartik.com> | 2015-10-28 18:26:09 -0700 |
---|---|---|
committer | Kartik K. Agaram <vc@akkartik.com> | 2015-10-28 18:26:09 -0700 |
commit | 855a5b08579a829dd87a6b0755aa163d2801819a (patch) | |
tree | eac7dec132be4d2db7577503decf4a4aa4020dfe | |
parent | 70f70118f468b51ac14b7e992b0ec941c3a50d4d (diff) | |
download | mu-855a5b08579a829dd87a6b0755aa163d2801819a.tar.gz |
2307
-rw-r--r-- | 055parse_tree.cc | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/055parse_tree.cc b/055parse_tree.cc index 16b5309a..eee27a4a 100644 --- a/055parse_tree.cc +++ b/055parse_tree.cc @@ -1,3 +1,8 @@ +// So far instructions can only contain linear lists of properties. Now we add +// support for more complex trees of properties in dilated reagents. This will +// come in handy later for expressing complex types, like "a dictionary from +// (address to array of charaters) to (list of numbers)". + :(scenario dilated_reagent_with_nested_brackets) recipe main [ {1: number, foo: (bar (baz quux))} <- copy 34 |