diff options
author | Kartik K. Agaram <vc@akkartik.com> | 2015-03-20 21:29:29 -0700 |
---|---|---|
committer | Kartik K. Agaram <vc@akkartik.com> | 2015-03-20 21:29:29 -0700 |
commit | 198ad74126b72aa5e1e242468db1586234df91ba (patch) | |
tree | c452bc6d3d8d6930d1cb82ecbfa8f74a4b3e397c /cpp/025name | |
parent | a3d9828c190c86d9984a8e788f16dc10dfb95afa (diff) | |
download | mu-198ad74126b72aa5e1e242468db1586234df91ba.tar.gz |
962 - no, not quite
A big one left: tracking the size of reagents.
Diffstat (limited to 'cpp/025name')
-rw-r--r-- | cpp/025name | 21 |
1 files changed, 18 insertions, 3 deletions
diff --git a/cpp/025name b/cpp/025name index f226d8e6..e3d290c3 100644 --- a/cpp/025name +++ b/cpp/025name @@ -42,8 +42,9 @@ void transform_names(const recipe_number r) { inst.ingredients[1].initialized = true; trace("name") << "field " << inst.ingredients[1].name << " of type " << Type[record].name << " is at offset " << inst.ingredients[1].value; } - // 2: map names to addresses + // 2: map names to addresses if necessary for (size_t in = 0; in < inst.ingredients.size(); ++in) { + if (is_raw(inst.ingredients[in])) continue; //? cout << "ingredient " << inst.ingredients[in].name << '\n'; //? 1 if (inst.ingredients[in].name != "default_space" && inst.ingredients[in].types[0] @@ -56,8 +57,8 @@ void transform_names(const recipe_number r) { inst.ingredients[in].initialized = true; } } - // 3: replace names with addresses for (size_t out = 0; out < inst.products.size(); ++out) { + if (is_raw(inst.products[out])) continue; //? cout << "product " << out << '/' << inst.products.size() << " " << inst.products[out].name << '\n'; //? 3 //? cout << inst.products[out].types[0] << '\n'; //? 1 if (inst.products[out].name != "_" @@ -94,6 +95,13 @@ int find_element_name(const type_number t, const string& name) { return -1; } +bool is_raw(const reagent& r) { + for (size_t i = /*skip value+type*/1; i < r.properties.size(); ++i) { + if (r.properties[i].first == "raw") return true; + } + return false; +} + :(scenario "convert_names_passes_dummy") # _ is just a dummy result that never gets consumed recipe main [ @@ -102,7 +110,7 @@ recipe main [ +name: assign x 1 -name: assign _ 1 -//: One reserved word that we'll need later. +//: one reserved word that we'll need later :(scenario "convert_names_passes_default_space") recipe main [ default_space:integer, x:integer <- copy 0:literal @@ -110,6 +118,13 @@ recipe main [ +name: assign x 1 -name: assign default_space 1 +//: an escape hatch to suppress name conversion that we'll use later +:(scenario "convert_names_passes_raw") +recipe main [ + x:integer/raw <- copy 0:literal +] +-name: assign x 1 + //: update our running example record for the next test :(before "End Mu Types Initialization") Type[point].element_names.push_back("x"); |