use of com.android.tools.idea.experimental.codeanalysis.datastructs.graph.node.GraphNode in project android by JetBrains.
the class SwitchBranchingNodeImpl method getOut.
@Override
public GraphNode[] getOut() {
GraphNode[] retArray = new GraphNode[mSwitchTable.size()];
int i = 0;
for (Value v : mSwitchTable.keySet()) {
GraphNode target = mSwitchTable.get(v);
retArray[i] = target;
i++;
}
return retArray;
}
Aggregations