From b06a8080200c54f54d24ab8fd96385d25df6cba9 Mon Sep 17 00:00:00 2001 From: Alan Knowles Date: Fri, 16 Jul 2010 10:54:06 +0800 Subject: [PATCH] JSDOC/Walker2.js --- JSDOC/Walker2.js | 22 +++++++++++----------- 1 file changed, 11 insertions(+), 11 deletions(-) diff --git a/JSDOC/Walker2.js b/JSDOC/Walker2.js index 48396db..ea12063 100644 --- a/JSDOC/Walker2.js +++ b/JSDOC/Walker2.js @@ -427,7 +427,7 @@ Walker2 = XObject.define( this.currentDoc = false; continue; } - /* + if (this.currentDoc) { //print(token.toString()); @@ -438,8 +438,8 @@ Walker2 = XObject.define( if (((this.ts.lookTok(1).data == ':' )|| (this.ts.lookTok(1).data == '=')) && (this.ts.lookTok(2).name == "FUNCTION") ) { - this.ts.nextTok(); - this.ts.nextTok(); + // this.ts.nextTok(); + // this.ts.nextTok(); atype = 'FUNCTION'; } @@ -454,7 +454,7 @@ Walker2 = XObject.define( } - */ + continue; // dont care about other idents.. @@ -477,16 +477,16 @@ Walker2 = XObject.define( //print("GOT FUNCTION"); // see if we have an unconsumed doc... - //if (this.currentDoc) { - // throw { - // name: "ArgumentError", - // message: "Unhandled doc (TOKfunction)" + token.toString() - // }; - // + if (this.currentDoc) { + throw { + name: "ArgumentError", + message: "Unhandled doc (TOKfunction)" + token.toString() + }; + //this.addSymbol(this.currentDoc.getTag('class')[0].name, true); //throw "Unconsumed Doc: (TOKrbrace)" + this.currentDoc.toSource(); - //} + } -- 2.39.2