Return C field name used for attribute bitmap.
(self, index: int)
| 432 | return result |
| 433 | |
| 434 | def bitmap_field(self, index: int) -> str: |
| 435 | """Return C field name used for attribute bitmap.""" |
| 436 | n = index // BITMAP_BITS |
| 437 | if n == 0: |
| 438 | return "bitmap" |
| 439 | return f"bitmap{n + 1}" |
| 440 | |
| 441 | def attr_bitmap_expr(self, obj: str, cl: ClassIR, index: int) -> str: |
| 442 | """Return reference to the attribute definedness bitmap.""" |
no outgoing calls
no test coverage detected