(&self)
| 230 | |
| 231 | impl Alias { |
| 232 | pub fn name(&self) -> String { |
| 233 | if let Some(asname) = &self.asname { |
| 234 | asname.clone() |
| 235 | } else { |
| 236 | self.name.clone() |
| 237 | } |
| 238 | } |
| 239 | } |
| 240 | |
| 241 | // https://docs.python.org/3/library/ast.html#ast.ImportFrom |
nothing calls this directly
no outgoing calls
no test coverage detected