currentScope = (SimpleNode) scopeStack.peek(); //at least the module should be there if we don't have anything.
} catch (Exception e1) {
Log.log(e1);
}
GetNodeForExtractLocalVisitor visitor = new GetNodeForExtractLocalVisitor(startLineIndexInASTCoords);
try {
currentScope.accept(visitor);
} catch (Exception e) {
throw new RuntimeException(e);
}
SimpleNode lastNodeBeforePassedLine = visitor.getLastInContextBeforePassedLine();
if (lastNodeBeforePassedLine != null) {
final int[] line = new int[] { Integer.MAX_VALUE };
try {
Visitor v = new Visitor() {