(self, e: IndexExpr)
| 229 | return self.seq_expr(e, "Set") |
| 230 | |
| 231 | def visit_index_expr(self, e: IndexExpr) -> Key | None: |
| 232 | if literal(e.index) == LITERAL_YES: |
| 233 | return ("Index", literal_hash(e.base), literal_hash(e.index)) |
| 234 | return None |
| 235 | |
| 236 | def visit_assignment_expr(self, e: AssignmentExpr) -> Key | None: |
| 237 | return literal_hash(e.target) |
nothing calls this directly
no test coverage detected