Rust: rename getTy -> getTypeRepr

This commit is contained in:
Paolo Tranquilli
2024-12-03 11:17:08 +01:00
parent 8287cdd7b3
commit db18d1046b
116 changed files with 707 additions and 667 deletions

View File

@@ -33,6 +33,8 @@ fn property_name(type_name: &str, field_name: &str) -> String {
("Path", "segment") => "part",
(_, "then_branch") => "then",
(_, "else_branch") => "else_",
("ArrayType", "ty") => "element_type_repr",
(_, "ty") => "type_repr",
_ => field_name,
};
name.to_owned()