(&self, name: &'static str, parent: Option<&ScopeId>)
| 168 | } |
| 169 | |
| 170 | fn new_id(&self, name: &'static str, parent: Option<&ScopeId>) -> ScopeId { |
| 171 | ScopeId { |
| 172 | name, |
| 173 | parent_hash: ScopeId::get_hash(parent), |
| 174 | } |
| 175 | } |
| 176 | } |
| 177 | |
| 178 | fn write_recursively<W: io::Write>( |
no outgoing calls
no test coverage detected