(&mut self, annotation: &ast::Expr)
| 1246 | } |
| 1247 | |
| 1248 | fn scan_annotation(&mut self, annotation: &ast::Expr) -> SymbolTableResult { |
| 1249 | self.scan_annotation_inner(annotation, false) |
| 1250 | } |
| 1251 | |
| 1252 | /// Scan an annotation from an AnnAssign statement (can be conditional) |
| 1253 | fn scan_ann_assign_annotation(&mut self, annotation: &ast::Expr) -> SymbolTableResult { |
no test coverage detected