Called when starting to evaluate a lambda expression so that the arguments are available to the EL context during evaluation. @param arguments The arguments in scope for the current lambda expression. @since EL 3.0
(Map<String,Object> arguments)
| 328 | * @since EL 3.0 |
| 329 | */ |
| 330 | public void enterLambdaScope(Map<String,Object> arguments) { |
| 331 | getLambdaArguments().push(arguments); |
| 332 | } |
| 333 | |
| 334 | /** |
| 335 | * Called after evaluating a lambda expression to signal that the arguments are no longer required. |
no test coverage detected