Scan an annotation from an AnnAssign statement (can be conditional)
(&mut self, annotation: &ast::Expr)
| 1251 | |
| 1252 | /// Scan an annotation from an AnnAssign statement (can be conditional) |
| 1253 | fn scan_ann_assign_annotation(&mut self, annotation: &ast::Expr) -> SymbolTableResult { |
| 1254 | self.scan_annotation_inner(annotation, true) |
| 1255 | } |
| 1256 | |
| 1257 | fn scan_annotation_inner( |
| 1258 | &mut self, |
no test coverage detected