(
self, litem: AssignmentTarget, ritem: Value, line: int
)
| 909 | self.assign(lvalue, value, line) |
| 910 | |
| 911 | def process_iterator_tuple_assignment_helper( |
| 912 | self, litem: AssignmentTarget, ritem: Value, line: int |
| 913 | ) -> None: |
| 914 | error_block, ok_block = BasicBlock(), BasicBlock() |
| 915 | self.add(Branch(ritem, error_block, ok_block, Branch.IS_ERROR)) |
| 916 | |
| 917 | self.activate_block(error_block) |
| 918 | self.add( |
| 919 | RaiseStandardError(RaiseStandardError.VALUE_ERROR, "not enough values to unpack", line) |
| 920 | ) |
| 921 | self.add(Unreachable()) |
| 922 | |
| 923 | self.activate_block(ok_block) |
| 924 | self.assign(litem, ritem, line) |
| 925 | |
| 926 | def process_iterator_tuple_assignment( |
| 927 | self, target: AssignmentTargetTuple, rvalue_reg: Value, line: int |
nothing calls this directly
no test coverage detected