JSDOC/BuildDocs.js
[gnome.introspection-doc-generator] / JSDOC / BuildDocs.js
index 5bba25e..263b6ef 100644 (file)
@@ -172,7 +172,7 @@ BuildDocs = {
             }
 
             var txs = new TextStream(src);
-            Options.LOG.inform("txs : " + txs.text);
+            
             var tr = new TokenReader({ keepComments : true, keepWhite : true , sepIdents: false });
             
             var ts = new TokenStream(tr.tokenize(txs));
@@ -265,8 +265,8 @@ BuildDocs = {
         function isaFile($) {
             return ($.is("FILE"))
         }
-        function isaClass($) { 
-            return ($.is("CONSTRUCTOR") || $.isNamespace); 
+        function isaClass($) {
+            return ($.is("CONSTRUCTOR") || $.isNamespace || $.isStatic); 
         }
         
         
@@ -288,6 +288,7 @@ BuildDocs = {
             this.makeSrcFile(file, targetDir);
         }
         
+        
         var classes = symbols.filter(isaClass).sort(makeSortby("alias"));
          
          //Options.LOG.inform("classTemplate Process : all classes");