MCPcopy Create free account
hub / github.com/Glyphack/enderpy / Alias

Class Alias

parser/src/ast.rs:225–229  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

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

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected