diff options
author | Kartik K. Agaram <vc@akkartik.com> | 2015-11-07 23:33:34 -0800 |
---|---|---|
committer | Kartik K. Agaram <vc@akkartik.com> | 2015-11-07 23:33:34 -0800 |
commit | 45f75796d6fa56afe269748bac12519508886376 (patch) | |
tree | 51282a5773f215c536804e6349a36e4529fd5163 | |
parent | 59399e8f446625baab98c5b3c079550c2ab75957 (diff) | |
download | mu-45f75796d6fa56afe269748bac12519508886376.tar.gz |
2395 - type ingredients can map to trees of types
-rw-r--r-- | 036call_reply.cc | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/036call_reply.cc b/036call_reply.cc index 695c0910..1b258172 100644 --- a/036call_reply.cc +++ b/036call_reply.cc @@ -42,7 +42,9 @@ case REPLY: { for (long long int i = 0; i < SIZE(caller_instruction.products); ++i) { if (has_property(caller_instruction.products.at(i), "skiptypecheck")) continue; // todo: drop this once we have generic containers if (!types_match(caller_instruction.products.at(i), reply_inst.ingredients.at(i))) { - raise_error << maybe(callee) << "reply ingredient " << reply_inst.ingredients.at(i).original_string << " can't be saved in " << caller_instruction.products.at(i).original_string << '\n' << end(); + raise_error << maybe(callee) << "reply ingredient " << reply_inst.ingredients.at(i).to_string() << " can't be saved in " << caller_instruction.products.at(i).to_string() << '\n' << end(); + cerr << dump_types(reply_inst.ingredients.at(i)) << " ========= " << dump_types(caller_instruction.products.at(i)) << '\n'; + exit(0); goto finish_reply; } } |