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

index eb187f1..9c5054d 100644 (file)
@@ -41,6 +41,9 @@ namespace JSDOC {
         public void push (Token t) {
             this.tokens.add(t);
         }
+        public Token get(int i) {
+            return this.tokens.get(i);
+        }
     }