JSDOC/TokenReader.js
[gnome.introspection-doc-generator] / JSDOC / TokenReader.js
index 5512783..0153b90 100644 (file)
@@ -158,20 +158,19 @@ TokenReader = XObject.define(
             if (found === "") {
                 return false;
             }
-            else {
-                if (this.collapseWhite) {
-                    found = "\n";
-                }
-                if (this.keepWhite) {
-                    var last = tokens.pop();
-                    if (last.name != "WHIT") {
-                        tokens.push(last);
-                    }
-                    
-                    tokens.push(new Token(found, "WHIT", "NEWLINE", this.line));
+            //this.line++;
+            if (this.collapseWhite) {
+                found = "\n";
+            }
+            if (this.keepWhite) {
+                var last = tokens.pop();
+                if (last.name != "WHIT") {
+                    tokens.push(last);
                 }
-                return true;
+                
+                tokens.push(new Token(found, "WHIT", "NEWLINE", this.line));
             }
+            return true;
         },
 
         /**