(self)
| 1948 | self.fail(f"Opcode {opcode} not found in code") |
| 1949 | |
| 1950 | def test_simple_assignment(self): |
| 1951 | snippet = "x = 1" |
| 1952 | self.check_positions_against_ast(snippet) |
| 1953 | |
| 1954 | def test_compiles_to_extended_op_arg(self): |
| 1955 | # Make sure we still have valid positions when the code compiles to an |
nothing calls this directly
no test coverage detected