(self, o: ExpressionStmt)
| 223 | super().visit_assignment_stmt(o) |
| 224 | |
| 225 | def visit_expression_stmt(self, o: ExpressionStmt) -> None: |
| 226 | if isinstance(o.expr, (StrExpr, BytesExpr)): |
| 227 | # Docstring |
| 228 | self.record_line(o.line, TYPE_EMPTY) |
| 229 | else: |
| 230 | super().visit_expression_stmt(o) |
| 231 | |
| 232 | def visit_pass_stmt(self, o: PassStmt) -> None: |
| 233 | self.record_precise_if_checked_scope(o) |
nothing calls this directly
no test coverage detected