MCPcopy Create free account
hub / github.com/lief-project/LIEF / Subroutine>

Method Subroutine>

api/python/src/DWARF/types/pySubroutine.cpp:11–25  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

9namespace LIEF::dwarf::py {
10template<>
11void 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}

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected