JSDOC/BuildDocs.js
[gnome.introspection-doc-generator] / JSDOC / BuildDocs.js
index 57c2c72..416d755 100644 (file)
@@ -137,20 +137,20 @@ 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); 
                     for (var sy in syms._index) {
-                        print("ADD:" + sy );
-                       Parser.symbols.addSymbol(syms[sy]);
+                        //print("ADD:" + sy );
+                       Parser.symbols.addSymbol(syms._index[sy]);
                     }
                     continue;
                 }