JSDOC/BuildDocs.js
[gnome.introspection-doc-generator] / JSDOC / BuildDocs.js
index 57c2c72..2ef7e4b 100644 (file)
@@ -137,20 +137,22 @@ BuildDocs = {
                         if (typeof(v) != 'object') {
                             return v;
                         }
-                        if (typeof(v._object) == 'undefined') {
+                        if (typeof(v['*object']) == 'undefined') {
                             return v;
                         }
-                        var cls = imports[v._object][v._object];
-                        print(v._object);
-                        delete v._object;
+                        var cls = imports[v['*object']][v['*object']];
+                        //print(v['*object']);
+                        delete v['*object'];
                         var ret = new cls();
                         XObject.extend(ret, v);
                         return ret;
+                        
+                        
                     });
-                    print("Add sybmols " + cacheFile); 
+                    //print("Add sybmols " + cacheFile); 
                     for (var sy in syms._index) {
-                        print("ADD:" + sy );
-                       Parser.symbols.addSymbol(syms[sy]);
+                      //  print("ADD:" + sy );
+                       Parser.symbols.addSymbol(syms._index[sy]);
                     }
                     continue;
                 }