sync
authorAlan Knowles <alan@akbkhome.com>
Sat, 8 Oct 2011 10:20:23 +0000 (18:20 +0800)
committerAlan Knowles <alan@akbkhome.com>
Sat, 8 Oct 2011 10:20:23 +0000 (18:20 +0800)
JSDOC/Parser.js
examples/document_self.sh [deleted file]
examples/jsdoc.cfg.json [deleted file]

index 6d6eb08..70a6caa 100644 (file)
@@ -5,11 +5,18 @@ Symbol      = imports.Symbol.Symbol;
 SymbolSet      = imports.SymbolSet.SymbolSet;
 DocComment  = imports.DocComment.DocComment;
  /**
- * Parser is a static  instance..
- * 
- * 
+ * @class Parser
+ * @namespace JSDOC
+ * Manages and builds the symbolsets by calling walker to create all of the symols
  */
 Parser = XObject.define(
+    /**
+     * @constructor
+     * @param {Object} opts The configuration
+     *
+     *
+     */        
+       
     function(opts) {
         
         XObject.extend(this, opts);
@@ -141,7 +148,7 @@ Parser = XObject.define(
         
         addSymbol: function(symbol) 
         {
-             //print("PARSER addSYMBOL : " + symbol.alias);
+            print("+symbol : " + symbol.alias);
             
             // if a symbol alias is documented more than once the last one with the user docs wins
             if (this.symbols.hasSymbol(symbol.alias)) {
diff --git a/examples/document_self.sh b/examples/document_self.sh
deleted file mode 100644 (file)
index 831ae78..0000000
+++ /dev/null
@@ -1,4 +0,0 @@
-
-seed ../jsdocbuild.js --baseDir ../../app.jsdoc \
-   --target ../../app.jsdoc/docs --conf examples/jsdoc.cfg.json \
-   --cacheDirectory /tmp/app.jsdoc.cache/
\ No newline at end of file
diff --git a/examples/jsdoc.cfg.json b/examples/jsdoc.cfg.json
deleted file mode 100644 (file)
index 019c25d..0000000
+++ /dev/null
@@ -1,15 +0,0 @@
-{
-       "src" : [ 
-               "" , 
-               "JSDOC", 
-               "JsTemplate"
-               
-               ],
-       "exclude-src" : [
-               
-               
-       ],
-               
-       "templateDir" : "examples/jsdoc_templates"
-               
-}
\ No newline at end of file