Merge pull request #2803 from moreal/bugfix/rethrow-error-in-build-map

Fix incorrect unwrapping
This commit is contained in:
Jeong YunWon
2021-08-07 23:47:06 +09:00
committed by GitHub

View File

@@ -1311,7 +1311,7 @@ impl ExecutingFrame<'_> {
}
} else {
for (key, value) in self.pop_multiple(2 * size).tuples() {
map_obj.set_item(key, value, vm).unwrap();
map_obj.set_item(key, value, vm)?;
}
}