MCPcopy Index your code
hub / github.com/apache/tomcat / nextChar

Method nextChar

java/org/apache/jasper/compiler/ELParser.java:404–409  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

402 }
403
404 private char nextChar() {
405 if (index >= expression.length()) {
406 return (char) -1;
407 }
408 return expression.charAt(index++);
409 }
410
411 private char peek(int advance) {
412 int target = index + advance;

Callers 9

skipUntilELMethod · 0.95
nextTokenMethod · 0.95
parseQuotedCharsMethod · 0.95
hasJspRootMethod · 0.45
parseAttributeMethod · 0.45
parseNameMethod · 0.45
parseCustomTagMethod · 0.45
parseTemplateTextMethod · 0.45
parseXMLTemplateTextMethod · 0.45

Calls 2

lengthMethod · 0.80
charAtMethod · 0.80

Tested by

no test coverage detected