Skip to content

Commit fff81ee

Browse files
authoredAug 26, 2024··
node: support for useful properties accessor (#27)
Add support for parent (node) access from a given node. If node is root, returning oneself. Add support for node address or identifier (id field) when using such a definition: ```dts label: name@id { }; ``` id can be an address or an identifier.
2 parents 8f68085 + 99ccfc3 commit fff81ee

File tree

1 file changed

+8
-0
lines changed

1 file changed

+8
-0
lines changed
 

‎src/dts_utils/node.py

+8
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,14 @@ def label(self):
3232
return self._node.labels[0]
3333
return ""
3434

35+
@property
36+
def parent(self):
37+
return self._node.parent
38+
39+
@property
40+
def unit_addr(self):
41+
return self._node.unit_addr
42+
3543
def __getattr__(self, __name: str) -> Any:
3644
from .property import Property
3745

0 commit comments

Comments
 (0)
Please sign in to comment.