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

Method Immutable>

api/python/src/DWARF/types/pyImmutable.cpp:7–22  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

5namespace LIEF::dwarf::py {
6template<>
7void create<dw::types::Immutable>(nb::module_& m) {
8 nb::class_<dw::types::Immutable, dw::Type> type(m, "Immutable",
9 R"doc(
10 This class represents the ``DW_TAG_immutable_type`` type
11 )doc"_doc
12 );
13
14
15 type
16 .def_prop_ro("underlying_type", &dw::types::Immutable::underlying_type,
17 R"doc(
18 The underlying type.
19 )doc"_doc
20 )
21 ;
22}
23
24}

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected