X-Git-Url: http://git.roojs.org/?a=blobdiff_plain;f=JSDOC%2FWalker2.js;h=27f09844ceee88ec81006014df63888c9873da08;hb=af0a1ddee2c17e71f1eaf457663ea814a88266d7;hp=009570252cb8a03059ae03c20ac11f5782130d8d;hpb=ca799ce936b9fcf0b2794e9cb57fc0c28f10c91e;p=gnome.introspection-doc-generator diff --git a/JSDOC/Walker2.js b/JSDOC/Walker2.js index 0095702..27f0984 100644 --- a/JSDOC/Walker2.js +++ b/JSDOC/Walker2.js @@ -740,7 +740,7 @@ Walker2 = XObject.define( addSymbol: function(lastIdent, appendIt, atype ) { - print("addSymbol : " + lastIdent); + print("Walker.addSymbol : " + lastIdent); /*if (!this.currentDoc.tags.length) { @@ -816,8 +816,8 @@ Walker2 = XObject.define( /// calc scope!! - print("ADDING SYMBOL: "+ s.join('|') +"\n"+ _s + "\n" +Script.prettyDump(this.currentDoc.toSource())); - + //print("ADDING SYMBOL: "+ s.join('|') +"\n"+ _s + "\n" +Script.prettyDump(this.currentDoc.toSource())); + print("Walker.addsymbol - add : " + _s); if (appendIt && !lastIdent.length) { // append, and no symbol??? @@ -852,20 +852,28 @@ Walker2 = XObject.define( return; } } + print("Walker.addsymbol - chkdup: " + _s); if (typeof(this.symbols[_s]) != 'undefined') { if (this.symbols[_s].comment.hasTags) { // then existing comment doesnt has tags - throw "DUPLICATE Symbol " + _s; + throw { + name: "ArgumentError", + message:"DUPLICATE Symbol " + _s + }; + } // otherwise existing comment has tags - overwrite.. } + print("Walker.addsymbol - ATYPE: " + _s); + if (typeof(atype) == "undefined") { atype = 'OBJECT'; //this.currentDoc.getTag('class').length ? 'OBJECT' : 'FUNCTION';; } + print("Walker.addsymbol - add : "); var symbol = new Symbol(_s, [], atype, this.currentDoc); Parser = imports.Parser.Parser; Parser.addSymbol(symbol);