Skip to content

Commit f8619c6

Browse files
committed
Simplify document roots and fix tree
1 parent bd54c0a commit f8619c6

File tree

2 files changed

+17
-2
lines changed

2 files changed

+17
-2
lines changed
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
Extension { #name : 'XMLDocument' }
2+
3+
{ #category : '*XML-Parser-Tools' }
4+
XMLDocument >> inspectorRoots [
5+
6+
^ Array with: self root
7+
]

src/XML-Parser-Tools/XMLNode.extension.st

+10-2
Original file line numberDiff line numberDiff line change
@@ -14,19 +14,27 @@ XMLNode >> inspectTreeIn: specBuilder [
1414
<inspectorPresentationOrder: 28 title: 'Tree'>
1515

1616
| roots |
17-
roots := self isDocument ifTrue: [ (Array with: self root) ] ifFalse: [ (Array with: self) ].
17+
18+
roots := self inspectorRoots.
1819
^ specBuilder newTree
1920
roots: roots;
2021
display: [ :aNode |
2122
self inspectorTreeStringFor: aNode
2223
];
2324
" displayIcon: [ :aNode | aNode iconName ifNotNil: [ :aName | self iconNamed: aName ] ];"
2425
children: [ :aNode |
25-
aNode isContentNode ifFalse: [ aNode descendantElements ] ifTrue: [ #() ]]
26+
27+
aNode hasChildren ifTrue: [ aNode descendantElements ] ifFalse: [ #() ]]
2628

2729

2830
]
2931

32+
{ #category : '*XML-Parser-Tools' }
33+
XMLNode >> inspectorRoots [
34+
35+
^ Array with: self
36+
]
37+
3038
{ #category : '*XML-Parser-Tools' }
3139
XMLNode >> inspectorTreeStringFor: anXMLElement [
3240
| display |

0 commit comments

Comments
 (0)