pop(root); // clear the pushed names
push(root); // push it again
break; // continue search inside the function
case FCALLNODE:
FCallNode fcallNode = (FCallNode) root;
if(!fcallNode.getName().equals(qualifiedName.get(0)))
break SEARCH;
if(inWantedScope())
return Lists.newArrayList(new GenericCallNode(fcallNode));
break; // continue search inside the function
default: