JSDOC/Symbol.js
[gnome.introspection-doc-generator] / JSDOC / Symbol.js
index ba14c9c..1790ad3 100644 (file)
@@ -50,9 +50,9 @@ Symbol = XObject.define(
         _name : "",
         _params : [], //Doctag[]
         properties : [], //Doctag[]
-        requires : [],
-        returns : [],
-        see : [],
+        requires : [],  //Doctag[]
+        returns : [], //Doctag[]
+        see : [], //Doctag[]
         since : "",
         srcFile : {},
         type : "",
@@ -94,6 +94,9 @@ Symbol = XObject.define(
                             case 'methods' :
                             case '_params': 
                             case 'properties': 
+                            case 'requires':
+                            case 'returns':
+                            case 'see':
                                 ret[i] = array2object(this[i],true); 
                                 continue;
                                 
@@ -131,7 +134,7 @@ Symbol = XObject.define(
             //this.events = [];
             this.exceptions = [];
             this.inherits = [];
-            //this.inheritsFrom = [];
+            //
             this.isa = "OBJECT"; // OBJECT//FUNCTION
             this.methods = [];
             this._params = [];
@@ -140,8 +143,12 @@ Symbol = XObject.define(
             this.returns = [];
             this.see = [];
             this.srcFile = {};
-            this.childClasses = [];
+            
+            
             this.cfgs = {};
+            // derived later?
+            this.inheritsFrom = [];
+            this.childClasses = [];
             
             this.comment = new DocComment();
             this.comment.isUserComment =  false;