3
0
Fork 0
mirror of https://github.com/YosysHQ/yosys synced 2025-04-19 15:19:05 +00:00

Merge pull request #4995 from akashlevy/pyosys_namedobject

Add `NamedObject` to `py_wrap_generator.py`
This commit is contained in:
KrystalDelusion 2025-04-15 11:11:59 +12:00 committed by GitHub
commit 0644724c9e
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -977,6 +977,7 @@ sources = [
WClass("IdString", link_types.ref_copy, None, "str()", ""),
WClass("Const", link_types.ref_copy, None, "as_string()", ""),
WClass("AttrObject", link_types.ref_copy, None, None, None),
WClass("NamedObject", link_types.ref_copy, None, None, None),
WClass("Selection", link_types.ref_copy, None, None, None),
WClass("Monitor", link_types.derive, None, None, None),
WClass("CaseRule",link_types.ref_copy, None, None, None, True),