* compare with ")" is a simple #foo() style macro, comparing to
* "#end" is a block style macro. We use starts with because the token
* may end with '\n'
*/
List<Token> tokens=node.getTokens();
Token t = tokens.get(tokens.size()-1);
if (t.image.startsWith(")") || t.image.startsWith("#end"))
{
RuntimeServices rsvc=VelocityUtil.getEngine().getRuntimeServices();
strictRef = rsvc.getBoolean(RuntimeConstants.RUNTIME_REFERENCES_STRICT, false);
}