| 223 | // https://docs.python.org/3/library/ast.html#ast.alias |
| 224 | #[derive(Debug, Clone)] |
| 225 | pub struct Alias { |
| 226 | pub node: Node, |
| 227 | pub name: String, |
| 228 | pub asname: Option<String>, |
| 229 | } |
| 230 | |
| 231 | impl Alias { |
| 232 | pub fn name(&self) -> String { |
nothing calls this directly
no outgoing calls
no test coverage detected