MCPcopy Create free account
hub / github.com/boxbeam/RedLib / string

Method string

src/redempt/redlib/json/JSONParser.java:120–128  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

118 }
119
120 private String string() {
121 assertChar('"');
122 builder.setLength(0);
123 char c;
124 while ((c = advance()) != '"') {
125 builder.append(c == '\\' ? escapeSequence() : c);
126 }
127 return builder.toString();
128 }
129
130 private Object object() {
131 switch (peek()) {

Callers 2

objectMethod · 0.95
mapMethod · 0.95

Calls 5

assertCharMethod · 0.95
advanceMethod · 0.95
escapeSequenceMethod · 0.95
appendMethod · 0.80
toStringMethod · 0.65

Tested by

no test coverage detected