if (methodGen == null) {
return null;
}
StoreAnalysis analysis = new StoreAnalysis(getDepthFirstSearch(analysisCache, descriptor), getConstantPoolGen(
analysisCache, descriptor.getClassDescriptor()));
StoreDataflow dataflow = new StoreDataflow(getCFG(analysisCache, descriptor), analysis);
dataflow.execute();
return dataflow;
}