| 42 | # log various forms of profiling data. |
| 43 | @dataclasses.dataclass |
| 44 | class ProfileData: |
| 45 | name: str |
| 46 | chain_idx: int |
| 47 | instruction_idx: int |
| 48 | start_time: int |
| 49 | end_time: int |
| 50 | |
| 51 | |
| 52 | @dataclasses.dataclass |
no outgoing calls
no test coverage detected