JSDOC/BuildDocs.js
authorAlan Knowles <alan@akkbhome.com>
Tue, 6 Jul 2010 13:54:21 +0000 (21:54 +0800)
committerAlan Knowles <alan@akkbhome.com>
Tue, 6 Jul 2010 13:54:21 +0000 (21:54 +0800)
JSDOC/BuildDocs.js

index 314c4cc..905cb73 100644 (file)
@@ -16,6 +16,8 @@ TextStream = imports.TextStream.TextStream;
 TokenReader = imports.TokenReader.TokenReader;
 TokenStream = imports.TokenStream.TokenStream;
 Symbol = imports.Symbol.Symbol;
+DocComment = imports.DocComment.DocComment;
+
 /******************    INCLUDES ARE ALL AT THE BOTTOM OF THIS FILE!!!!! *******************/
 
 // should not realy be here -- or anywhere...??
@@ -292,7 +294,7 @@ BuildDocs = {
         var allFiles = [];
         
         for (var i = 0; i < files.length; i++) {
-            allFiles.push(new  Symbol(files[i], [], "FILE", new JSDOC.DocComment("/** */")));
+            allFiles.push(new  Symbol(files[i], [], "FILE", new DocComment("/** */")));
         }
         
         for (var i = 0; i < documentedFiles.length; i++) {