pub trait Identifier {
    fn value(&self) -> Symbol;
    fn loc(&self) -> Loc;
}

Required methods

Implementors