Пример #1
0
  public DefaultJSONParser(final Object input, final JSONLexer lexer, final ParserConfig config) {
    this.lexer = lexer;
    this.input = input;
    this.config = config;
    this.symbolTable = config.getSymbolTable();

    lexer.nextToken(JSONToken.LBRACE); // prime the pump
  }