示例#1
0
文件: Lexer.cs 项目: mrdivdiz/bpvita
 public Token NextToken()
 {
     this.SkipWhiteSpaces();
     return(Lexer.NextToken(this.json, ref this.index));
 }