slint/internal/compiler/passes/remove_unused_properties.rs
Tobias Hunger 4230ac2572
Update copyright information to reflect name change
Also run resue over the codebase and fix complaints from that tool.
2022-02-09 10:27:47 +01:00

43 lines
1.6 KiB
Rust

// Copyright © SixtyFPS GmbH <info@slint-ui.com>
// SPDX-License-Identifier: GPL-3.0-only OR LicenseRef-Slint-commercial
//! Remove the properties which are not used
use crate::object_tree::Component;
use std::collections::HashSet;
pub fn remove_unused_properties(component: &Component) {
fn recurse_remove_unused_properties(component: &Component) {
crate::object_tree::recurse_elem_including_sub_components_no_borrow(
component,
&(),
&mut |elem, _| {
let mut to_remove = HashSet::new();
for (prop, decl) in &elem.borrow().property_declarations {
if !decl.expose_in_public_api
&& !elem.borrow().named_references.is_referenced(prop)
&& !elem
.borrow()
.property_analysis
.borrow()
.get(prop)
.map_or(false, |v| v.is_used())
{
to_remove.insert(prop.to_owned());
}
}
let mut elem = elem.borrow_mut();
for x in &to_remove {
elem.property_declarations.remove(x);
elem.property_analysis.borrow_mut().remove(x);
elem.bindings.remove(x);
}
},
);
for global in &component.used_types.borrow().globals {
recurse_remove_unused_properties(global);
}
}
recurse_remove_unused_properties(component)
}