MCPcopy Index your code
hub / github.com/processing/processing / back

Method back

core/src/processing/data/JSONTokener.java:93–101  ·  view source on GitHub ↗

Back up one character. This provides a sort of lookahead capability, so that you can test for a digit or letter before attempting to parse the next number or identifier.

()

Source from the content-addressed store, hash-verified

91 * the next number or identifier.
92 */
93 public void back() {
94 if (this.usePrevious || this.index <= 0) {
95 throw new RuntimeException("Stepping back two steps is not supported");
96 }
97 this.index -= 1;
98 this.character -= 1;
99 this.usePrevious = true;
100 this.eof = false;
101 }
102
103
104 /**

Callers 6

moreMethod · 0.95
nextToMethod · 0.95
nextValueMethod · 0.95
skipToMethod · 0.95
JSONArrayMethod · 0.80
JSONObjectMethod · 0.80

Calls

no outgoing calls

Tested by

no test coverage detected