@since EL 2.2
(EvaluationContext ctx)
| 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 | /** |
nothing calls this directly
no test coverage detected