JSDOC/TextStream.vala
authorAlan Knowles <alan@roojs.com>
Thu, 10 Sep 2015 10:35:24 +0000 (18:35 +0800)
committerAlan Knowles <alan@roojs.com>
Thu, 10 Sep 2015 10:35:24 +0000 (18:35 +0800)
JSDOC/TextStream.vala

index ff5f98c..229b2ca 100644 (file)
@@ -29,12 +29,10 @@ namespace JSDOC {
             this.cursor = 0;
         }
         
-        public char look(int n = 0, out bool eof)
+        public char look(int n = 0)
         {
-            eof = false;
-                
+                 
             if (this.cursor+n < 0 || this.cursor+n >= this.text.length) {
-                eof = true;
                 return '\0';
             }
             return  this.text[this.cursor+n];