| 32 | |
| 33 | template<class T> |
| 34 | constexpr py_code_v |
| 35 | py_codev311() |
| 36 | { |
| 37 | return {sizeof(T), |
| 38 | {offsetof(T, co_filename)}, |
| 39 | {offsetof(T, co_name)}, |
| 40 | {offsetof(T, co_linetable)}, |
| 41 | {offsetof(T, co_firstlineno)}, |
| 42 | {offsetof(T, co_argcount)}, |
| 43 | {offsetof(T, co_localsplusnames)}, |
| 44 | {offsetof(T, co_code_adaptive)}}; |
| 45 | } |
| 46 | |
| 47 | template<class T> |
| 48 | constexpr py_frame_v |
nothing calls this directly
no outgoing calls
no test coverage detected