return getModule().getIndentationFromAst(functionNode.body[0]);
}
public List<FunctionDefAdapter> getFunctions() {
if (this.functions == null) {
LocalFunctionDefVisitor visitor = null;
visitor = VisitorFactory.createContextVisitor(LocalFunctionDefVisitor.class, this.getASTNode(),
getModule(), this);
this.functions = visitor.getAll();
}
return this.functions;
}