src/main/java/org/apache/commons/jxpath/ri/compiler/CoreFunction.java [226:246]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
        buffer.append('(');
        final Expression[] args = getArguments();
        if (args != null) {
            for (int i = 0; i < args.length; i++) {
                if (i > 0) {
                    buffer.append(", ");
                }
                buffer.append(args[i]);
            }
        }
        buffer.append(')');
        return buffer.toString();
    }

    @Override
    public Object compute(final EvalContext context) {
        return computeValue(context);
    }

    @Override
    public Object computeValue(final EvalContext context) {
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



src/main/java/org/apache/commons/jxpath/ri/compiler/ExtensionFunction.java [68:88]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
        buffer.append('(');
        final Expression[] args = getArguments();
        if (args != null) {
            for (int i = 0; i < args.length; i++) {
                if (i > 0) {
                    buffer.append(", ");
                }
                buffer.append(args[i]);
            }
        }
        buffer.append(')');
        return buffer.toString();
    }

    @Override
    public Object compute(final EvalContext context) {
        return computeValue(context);
    }

    @Override
    public Object computeValue(final EvalContext context) {
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



