for (int i = 0; i < argCount; i++) {
/*
* we only handle StringLiterals and References right now
*/
Node n = node.jjtGetChild(i);
if (n.getType() == ParserTreeConstants.JJTSTRINGLITERAL
|| n.getType() == ParserTreeConstants.JJTREFERENCE) {
if (!renderOutput(n, context, writer))
outputErrorToStream(writer, "error with arg " + i
+ " please see log.");
} else {
rsvc.error("#include() error : invalid argument type : "
+ n.toString());
outputErrorToStream(writer, "error with arg " + i
+ " please see log.");
}
}