MCPcopy Create free account
hub / github.com/e2wugui/zeze / next

Method next

ZezeJava/ZezeJava/src/main/java/Zeze/Util/JsonReader.java:223–231  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

221 }
222
223 public int next() {
224 for (int b; ; pos++) {
225 if ((b = buf[pos] & 0xff) > ' ') {
226 if (b != '/') // check comment
227 return b;
228 skipComment();
229 }
230 }
231 }
232
233 public int skipNext() {
234 for (int b; ; ) {

Callers 5

skipColonMethod · 0.95
parseMethod · 0.95
parseArrayMethod · 0.95
parseMapMethod · 0.95
parse0Method · 0.95

Calls 1

skipCommentMethod · 0.95

Tested by

no test coverage detected