JSDOC/TokenReader.vala
authorAlan Knowles <alan@roojs.com>
Wed, 30 Sep 2015 10:14:55 +0000 (18:14 +0800)
committerAlan Knowles <alan@roojs.com>
Wed, 30 Sep 2015 10:14:55 +0000 (18:14 +0800)
JSDOC/TokenReader.vala

index e817032..a748960 100644 (file)
@@ -44,7 +44,7 @@ namespace JSDOC {
         public Token? pop ()
         {
             if (this.tokens.size > 0) {
-                return this.tokens.remove_at(this.size-1);
+                return this.tokens.remove_at(this.tokens.size-1);
             }
             return null;
         }