pub fn strip_package_prefixes(type_expr: &str, _current_module: &str) -> StringExpand description
Strip package-qualified names from type expressions
Converts “package.Type” -> “Type” based on heuristics:
- First part starts with lowercase (likely a module)
- Last part starts with uppercase (likely a type)