diff Implab/JSON/JSONParser.cs @ 57:7759c80cad95

minor changes
author cin
date Tue, 17 Jun 2014 03:30:49 +0400
parents c0bf853aa04f
children 21611344d366
line wrap: on
line diff
--- a/Implab/JSON/JSONParser.cs	Sun Jun 15 19:40:06 2014 +0400
+++ b/Implab/JSON/JSONParser.cs	Tue Jun 17 03:30:49 2014 +0400
@@ -192,6 +192,12 @@
             throw new ParserException(String.Format("Unexpected token {0}: '{1}'", tokenType, value));
         }
 
+
+        public bool EOF {
+            get {
+                return m_scanner.EOF;
+            }
+        }
     }
 
 }