case START_ARRAY:
return extractArray(json, currentToken, jp);
case START_OBJECT:
return extractJso(json, currentToken, jp);
default:
throw new GwtTestJSONException("Error while parsing JSON string '" + json
+ "' : gwt-test-utils does not handle token '" + jp.getText() + "', line "
+ jp.getTokenLocation().getLineNr() + " column "
+ jp.getTokenLocation().getColumnNr());
}
}