JSDOC/Symbol.js
[gnome.introspection-doc-generator] / JSDOC / Symbol.js
index da8ac5e..ba14c9c 100644 (file)
@@ -35,8 +35,8 @@ Symbol = XObject.define(
         //events : false,
         example : "",
         exceptions : [],  // Doctag[]
-        inherits : [],
-        inheritsFrom : [],
+        inherits : [],  // Doctag[]
+        //inheritsFrom : [],
         isa : "OBJECT", // OBJECT//FUNCTION
         isEvent : false,
         isConstant : false,
@@ -46,10 +46,10 @@ Symbol = XObject.define(
         isPrivate : false,
         isStatic : false,
         memberOf : "",
-        methods : [],
+        methods : [], // Symbol[]
         _name : "",
-        _params : [],
-        properties : [],
+        _params : [], //Doctag[]
+        properties : [], //Doctag[]
         requires : [],
         returns : [],
         see : [],
@@ -90,6 +90,10 @@ Symbol = XObject.define(
                             case 'params' : 
                             case 'augments' :                             
                             case 'exceptions' :  
+                            case 'inherits' :
+                            case 'methods' :
+                            case '_params': 
+                            case 'properties': 
                                 ret[i] = array2object(this[i],true); 
                                 continue;
                                 
@@ -127,7 +131,7 @@ Symbol = XObject.define(
             //this.events = [];
             this.exceptions = [];
             this.inherits = [];
-            this.inheritsFrom = [];
+            //this.inheritsFrom = [];
             this.isa = "OBJECT"; // OBJECT//FUNCTION
             this.methods = [];
             this._params = [];