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

Method skipNext

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

Source from the content-addressed store, hash-verified

231 }
232
233 public int skipNext() {
234 for (int b; ; ) {
235 if ((b = buf[++pos] & 0xff) > ' ') {
236 if (b != '/') // check comment
237 return b;
238 skipComment();
239 }
240 }
241 }
242
243 public int skipVar(int e) { // ']' or '}'
244 for (int b, c; ; ) {

Callers 9

skipColonMethod · 0.95
parseArray0Method · 0.95
parseArrayMethod · 0.95
parseMap0Method · 0.95
parse0Method · 0.95
parseList0Method · 0.95
GTable2Class · 0.80
GTable1Class · 0.80
JsonClass · 0.80

Calls 1

skipCommentMethod · 0.95

Tested by

no test coverage detected