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

Method getValue

java/org/apache/el/parser/AstConcatenation.java:32–38  ·  view source on GitHub ↗
(EvaluationContext ctx)

Source from the content-addressed store, hash-verified

30
31
32 @Override
33 public Object getValue(EvaluationContext ctx) throws ELException {
34 // Coerce the two child nodes to string and then concatenate
35 String s1 = ELSupport.coerceToString(ctx, children[0].getValue(ctx));
36 String s2 = ELSupport.coerceToString(ctx, children[1].getValue(ctx));
37 return s1 + s2;
38 }
39
40
41 @Override

Callers

nothing calls this directly

Calls 2

coerceToStringMethod · 0.95
getValueMethod · 0.65

Tested by

no test coverage detected