Q4SVMHAEZQQCBFGPJMWS5H4VXB2HFQREZ3AWGOHFWHLFARUQVPBAC
let file_name = |l: &Local, inode: Position<Option<Hash>>| -> String {
if txn.get_revchanges(&channel, hash).is_some() {
let inode = Position {
change: inode.change.unwrap_or(hash),
pos: inode.pos,
};
format!(
"{}:{}",
txn.find_youngest_path(&changes, &channel, inode).unwrap().0,
l.line
)
} else {
format!("{}:{}", l.path, l.line)
}
};
let file_name = |l: &Local, _| format!("{}:{}", l.path, l.line);