sync
[app.Builder.js] / DependTree / BuildLists.js
index 2c858dd..da200d5 100644 (file)
@@ -73,7 +73,7 @@ function BuildLists () {
     
     for (cls in classes) {
         var odata = classes[cls];
-        methods[cls] = {}
+        //methods[cls] = {}
            
         implementations[odata.alias] = odata.titleType == 'Class' ? odata.childClasses :  odata.implementedBy;  
         //print(JSON.stringify(odata.methods,null,4));
@@ -93,6 +93,10 @@ function BuildLists () {
                     allchildren.push(p.type);
                 }
                 
+                if (typeof(methods[cls]) == 'undefined') {
+                    methods[cls] = {}
+                }
+                
                 if (typeof(methods[cls][p.type]) == 'undefined') {
                     methods[cls][p.type] = [];
                 }
@@ -129,6 +133,12 @@ function BuildLists () {
 }
 
 
+
+
+
+
+
+
 // we now have a list of classes / methods that can be used..
 // we now need a ui to flag stuff as "don't bother with"