JSDOC/TokenReader.vala
authorAlan Knowles <alan@roojs.com>
Fri, 2 Oct 2015 09:03:34 +0000 (17:03 +0800)
committerAlan Knowles <alan@roojs.com>
Fri, 2 Oct 2015 09:03:34 +0000 (17:03 +0800)
JSDOC/TokenReader.vala

index c9c41f4..d5c9294 100644 (file)
@@ -452,7 +452,7 @@ namespace JSDOC {
             // find terminator
             var str = stream.next();
             
-            while (!stream.look().eof) {
+            while (!stream.lookEOF()) {
                 if (stream.look() == '\\') { // escape sequence
                     str += stream.next(2);
                     continue;