public Object visitLambda(Lambda node) throws Exception {
String name = "<lambda>";
//Add a return node onto the outside of suite;
java.util.List<stmt> bod = new ArrayList<stmt>();
bod.add(new Return(node, node.getInternalBody()));
mod retSuite = new Suite(node, bod);
setline(node);
ScopeInfo scope = module.getScopeInfo(node);