Skip to content

Commit 17d67c4

Browse files
committed
codegen: Use {g,s}et_property annotation for alias
1 parent ff900f3 commit 17d67c4

File tree

2 files changed

+14
-0
lines changed

2 files changed

+14
-0
lines changed

src/analysis/functions.rs

+4
Original file line numberDiff line numberDiff line change
@@ -98,6 +98,8 @@ pub struct Info {
9898
/// this potential global function is defined
9999
pub ns_id: NsId,
100100
pub generate_doc: bool,
101+
pub get_property: Option<String>,
102+
pub set_property: Option<String>,
101103
}
102104

103105
impl Info {
@@ -942,6 +944,8 @@ fn analyze_function(
942944
hidden: false,
943945
ns_id,
944946
generate_doc,
947+
get_property: func.get_property.clone(),
948+
set_property: func.set_property.clone(),
945949
}
946950
}
947951

src/codegen/function.rs

+10
Original file line numberDiff line numberDiff line change
@@ -106,6 +106,16 @@ pub fn generate(
106106
if analysis.codegen_name() != analysis.func_name {
107107
doc_alias(w, &analysis.func_name, comment_prefix, indent)?;
108108
}
109+
if let Some(get_property) = &analysis.get_property {
110+
if get_property != analysis.codegen_name() {
111+
doc_alias(w, get_property, comment_prefix, indent)?;
112+
}
113+
}
114+
if let Some(set_property) = &analysis.set_property {
115+
if set_property != analysis.codegen_name() {
116+
doc_alias(w, set_property, comment_prefix, indent)?;
117+
}
118+
}
109119
// Don't add a guard for public or copy/equal functions
110120
let dead_code_cfg = if !analysis.visibility.is_public() && !analysis.is_special() {
111121
"#[allow(dead_code)]"

0 commit comments

Comments
 (0)