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

Method skipSpaces

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

Source from the content-addressed store, hash-verified

386 */
387
388 private void skipSpaces() {
389 int start = index;
390 while (hasNextChar()) {
391 char c = expression.charAt(index);
392 if (c > ' ') {
393 break;
394 }
395 index++;
396 }
397 whiteSpace = expression.substring(start, index);
398 }
399
400 private boolean hasNextChar() {
401 return index < expression.length();

Callers 15

hasNextMethod · 0.95
parseAttributesMethod · 0.45
parseAttributeMethod · 0.45
parseDirectiveMethod · 0.45
parseXMLDirectiveMethod · 0.45
parseXMLDeclarationMethod · 0.45
parseXMLExpressionMethod · 0.45
parseXMLScriptletMethod · 0.45
parseParamMethod · 0.45
parseIncludeMethod · 0.45
parseForwardMethod · 0.45

Calls 2

hasNextCharMethod · 0.95
charAtMethod · 0.80

Tested by

no test coverage detected