| 227 | } |
| 228 | |
| 229 | Dictionary ObjectDiffResult::get_property_diffs() const { |
| 230 | Dictionary result; |
| 231 | for (const auto &pair : property_diffs) { |
| 232 | result[pair.key] = pair.value; |
| 233 | } |
| 234 | return result; |
| 235 | } |
| 236 | |
| 237 | HashMap<String, Variant> ObjectDiffResult::get_property_diff_map() const { |
| 238 | return HashMap<String, Variant>(property_diffs); |
no outgoing calls
no test coverage detected