()
| 170 | } |
| 171 | |
| 172 | private Node build() throws ELException { |
| 173 | Node n = createNodeInternal(this.expression); |
| 174 | this.prepare(n); |
| 175 | if (n instanceof AstDeferredExpression || n instanceof AstDynamicExpression) { |
| 176 | n = n.jjtGetChild(0); |
| 177 | } |
| 178 | return n; |
| 179 | } |
| 180 | |
| 181 | @Override |
| 182 | public void visit(Node node) throws ELException { |
no test coverage detected