| 9 | namespace LIEF::dwarf::py { |
| 10 | template<> |
| 11 | void create<dw::types::Subroutine>(nb::module_& m) { |
| 12 | nb::class_<dw::types::Subroutine, dw::Type> type(m, "Subroutine", |
| 13 | R"doc( |
| 14 | This class represents the ``DW_TAG_subroutine_type`` type |
| 15 | )doc"_doc |
| 16 | ); |
| 17 | |
| 18 | type |
| 19 | .def_prop_ro("parameters", &dw::types::Subroutine::parameters, |
| 20 | R"doc( |
| 21 | Parameters of this subroutine |
| 22 | )doc"_doc |
| 23 | ) |
| 24 | ; |
| 25 | } |
| 26 | |
| 27 | } |
nothing calls this directly
no outgoing calls
no test coverage detected