MCPcopy Create free account
hub / github.com/apache/tomcat / enterLambdaScope

Method enterLambdaScope

java/jakarta/el/ELContext.java:330–332  ·  view source on GitHub ↗

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)

Source from the content-addressed store, hash-verified

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.

Callers 1

invokeMethod · 0.45

Calls 2

getLambdaArgumentsMethod · 0.95
pushMethod · 0.65

Tested by

no test coverage detected