(&mut self, module: &Module)
| 45 | |
| 46 | impl Labeler<'_> { |
| 47 | fn label_module(&mut self, module: &Module) { |
| 48 | for (_, decl) in module.names.iter() { |
| 49 | if let DeclKind::TableDecl(TableDecl { |
| 50 | expr: TableExpr::RelationVar(expr), |
| 51 | .. |
| 52 | }) = &decl.kind |
| 53 | { |
| 54 | self.fold_expr(*expr.clone()).unwrap(); |
| 55 | } |
| 56 | } |
| 57 | } |
| 58 | |
| 59 | fn get_span_lines(&mut self, id: usize) -> Option<String> { |
| 60 | let decl_span = self.root_mod.span_map.get(&id); |
no test coverage detected