(trait: ClassIR)
| 507 | ) |
| 508 | |
| 509 | def trait_offset_table_name(trait: ClassIR) -> str: |
| 510 | return "{}_{}_offset_table".format( |
| 511 | base.name_prefix(emitter.names), trait.name_prefix(emitter.names) |
| 512 | ) |
| 513 | |
| 514 | # Emit array definitions with enough space for all the entries |
| 515 | emitter.emit_line( |
no test coverage detected
searching dependent graphs…