Add some getter methods in MethodAnalyzer

This commit is contained in:
Ben Gruver 2013-04-07 20:38:43 -07:00
parent 9cb9c76d50
commit 8887625162

View File

@ -295,6 +295,15 @@ public class MethodAnalyzer {
}
}
public List<AnalyzedInstruction> getAnalyzedInstructions() {
return analyzedInstructions.getValues();
}
@Nullable
public AnalysisException getAnalysisException() {
return analysisException;
}
public int getParamRegisterCount() {
return paramRegisterCount;
}