CRaSH crash = (CRaSH)context.getSession().get("crash");
if (crash != null) {
try {
Command<?> cmd = crash.getCommand(property);
if (cmd != null) {
return new PipeLineClosure(context, property, cmd);
} else {
return null;
}
} catch (CommandException e) {
throw new InvokerInvocationException(e);