X-Git-Url: http://git.roojs.org/?p=gnome.introspection-doc-generator;a=blobdiff_plain;f=JSDOC%2FWalker2.js;h=ceb024d6c0a4ebda8e9943ea97baf02815a8a1e8;hp=009570252cb8a03059ae03c20ac11f5782130d8d;hb=f97b7efe182b819e8f6143b7aeb9fd45c7ab75f0;hpb=ca799ce936b9fcf0b2794e9cb57fc0c28f10c91e diff --git a/JSDOC/Walker2.js b/JSDOC/Walker2.js index 0095702..ceb024d 100644 --- a/JSDOC/Walker2.js +++ b/JSDOC/Walker2.js @@ -568,7 +568,7 @@ Walker2 = XObject.define( (this.ts.lookTok(-2).type == 'NAME') && (this.ts.lookTok(-3).data == '(' || this.ts.lookTok(-3).data== ',') ) { - //print("got for : function() {"); + int("got for : function() {"); //scopeName = this.ts.look(-3).data; this.ts.balanceN(Script.TOKlparen); @@ -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);