(final QueryContext qc)
| 74 | } |
| 75 | |
| 76 | @Override |
| 77 | public Value value(final QueryContext qc) throws QueryException { |
| 78 | final ValueBuilder vb = new ValueBuilder(qc); |
| 79 | for(final Item item : body().value(qc)) vb.add(funcItem(toFunction(item, qc), qc)); |
| 80 | return vb.value(this); |
| 81 | } |
| 82 | |
| 83 | /** |
| 84 | * Creates a function item over a dynamic function call to the given function item, with the |
nothing calls this directly
no test coverage detected