@since EL 2.2
()
| 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 | } |
no test coverage detected