mirror of
https://github.com/revanced/smali.git
synced 2025-06-13 04:27:38 +02:00
Add some getter methods in MethodAnalyzer
This commit is contained in:
@ -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;
|
||||
}
|
||||
|
Reference in New Issue
Block a user