| 201 | high = entry(value=20) |
| 202 | |
| 203 | class Opcode(StrEnum, type_key=_unique_key("Opcode")): |
| 204 | add = entry(value="+") |
| 205 | mul = entry(value="*") |
| 206 | |
| 207 | @py_class(_unique_key("EnumFields")) |
| 208 | class Instruction(Object): |
nothing calls this directly
no test coverage detected