roojspacker/Symbol.vala
authorAlan Knowles <alan@roojs.com>
Thu, 29 Jul 2021 09:39:20 +0000 (17:39 +0800)
committerAlan Knowles <alan@roojs.com>
Thu, 29 Jul 2021 09:39:20 +0000 (17:39 +0800)
roojspacker/Symbol.vala

index 27037aa..c76fe93 100644 (file)
@@ -694,9 +694,17 @@ namespace JSDOC {
             }
             
             // @children
-            
+             if (this.comment.getTag(DocTagTitle.CHILDREN).size > 0) {
+                foreach(var s in this.comment.getTag(DocTagTitle.CHILDREN).strip().split(" ")) {
+                       this.tree_children.add(s);
+               }
+            }
             // @parent
-            
+             if (this.comment.getTag(DocTagTitle.PARENT).size > 0) {
+                foreach(var s in this.comment.getTag(DocTagTitle.PARENT).strip().split(" ")) {
+                       this.tree_parent.add(s);
+               }
+            }
                         
             // @abstract
              if (this.comment.getTag(DocTagTitle.ABSTRACT).size > 0) {