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

minor changes
author cin
date Tue, 17 Jun 2014 03:30:49 +0400
parents c0bf853aa04f
children 21611344d366
comparison
equal deleted inserted replaced
56:4fcbe7a4b36b 57:7759c80cad95
190 190
191 void UnexpectedToken(object value, JsonTokenType tokenType) { 191 void UnexpectedToken(object value, JsonTokenType tokenType) {
192 throw new ParserException(String.Format("Unexpected token {0}: '{1}'", tokenType, value)); 192 throw new ParserException(String.Format("Unexpected token {0}: '{1}'", tokenType, value));
193 } 193 }
194 194
195
196 public bool EOF {
197 get {
198 return m_scanner.EOF;
199 }
200 }
195 } 201 }
196 202
197 } 203 }