JSDOC/Symbol.js
[gnome.introspection-doc-generator] / JSDOC / Symbol.js
index c27927d..6649b2f 100644 (file)
@@ -20,12 +20,26 @@ Symbol = XObject.define(
     {
         
             
-        /*
-        toQDump : function(t)
+        
+        toObject : function()
         {
-            return toQDump(t, 'Symbol.fromDump({', '})', {});//new Symbol());
+            var ret = { };
+            for (var i in this) {
+                switch (typeof(this[i])) {
+                    case 'function':
+                        continue;
+                    case 'object':
+                   
+                    case 'number':
+                    
+                    default:
+                    
+                   }
+            }
+            
+            
         },
-        */
+        
         init : function() 
         {
             this.name = "";