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

Method isParametersProvided

java/org/apache/el/parser/AstValue.java:442–451  ·  view source on GitHub ↗

@since EL 2.2

()

Source from the content-addressed store, hash-verified

440 * @since EL 2.2
441 */
442 @Override
443 public boolean isParametersProvided() {
444 // Assumption is that method parameters, if present, will be the last
445 // child
446 int len = children.length;
447 if (len > 2) {
448 return this.jjtGetChild(len - 1) instanceof AstMethodParameters;
449 }
450 return false;
451 }
452}

Callers 3

getMethodInfoMethod · 0.95
invokeMethod · 0.95
getMethodReferenceMethod · 0.95

Calls 1

jjtGetChildMethod · 0.65

Tested by

no test coverage detected