Skip to content

Commit

Permalink
codegen: Avoid double alias on badly annotated fn
Browse files Browse the repository at this point in the history
If both the setter and getter for a property have the same annotation we
would add the same alias twice.

e.g. get_property or org.gtk.get_property set on the setter, the we
would add the doc alias twice.
  • Loading branch information
A6GibKm authored and bilelmoussaoui committed Jun 2, 2024
1 parent 0a0288d commit 4ba6dc1
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions src/codegen/function.rs
Original file line number Diff line number Diff line change
Expand Up @@ -106,12 +106,13 @@ pub fn generate(
if analysis.codegen_name() != analysis.func_name {
doc_alias(w, &analysis.func_name, comment_prefix, indent)?;
}
// TODO Warn the user if both get_property and set_property are set as it is
// an error on the gir data.
if let Some(get_property) = &analysis.get_property {
if get_property != analysis.codegen_name() {
doc_alias(w, get_property, comment_prefix, indent)?;
}
}
if let Some(set_property) = &analysis.set_property {
} else if let Some(set_property) = &analysis.set_property {
if set_property != analysis.codegen_name() {
doc_alias(w, set_property, comment_prefix, indent)?;
}
Expand Down

0 comments on commit 4ba6dc1

Please sign in to comment.