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

Method getValueReference

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

@since EL 2.2

(EvaluationContext ctx)

Source from the content-addressed store, hash-verified

425 * @since EL 2.2
426 */
427 @Override
428 public ValueReference getValueReference(EvaluationContext ctx) {
429 // Check this is a reference to a base and a property
430 if (this.children.length > 2 && this.jjtGetChild(2) instanceof AstMethodParameters) {
431 // This is a method call
432 return null;
433 }
434 Target t = getTarget(ctx);
435 return new ValueReference(t.base, t.property);
436 }
437
438
439 /**

Callers

nothing calls this directly

Calls 2

getTargetMethod · 0.95
jjtGetChildMethod · 0.65

Tested by

no test coverage detected