Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add user map element symbol #917

Closed
wants to merge 2 commits into from
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 14 additions & 0 deletions runtime/collections/maps.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,20 @@ map hook_MAP_element(SortKItem key, SortKItem value) {
return map().set(key, value);
}

map hook_MAP_user_element(block *key, block *value) {
std::string key_sort = getReturnSortForTag(tag(key));
if (key_sort != "SortKItem{}") {
key = constructKItemInj(key, key_sort.c_str(), false);
}

std::string val_sort = getReturnSortForTag(tag(value));
if (val_sort != "SortKItem{}") {
value = constructKItemInj(value, val_sort.c_str(), false);
}

return map().set(key, value);
}

map hook_MAP_unit() {
return map();
}
Expand Down
Loading