-
-
Notifications
You must be signed in to change notification settings - Fork 83
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Streamify RTA #1166
base: develop
Are you sure you want to change the base?
Streamify RTA #1166
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
👍
@@ -88,24 +89,16 @@ public CallGraph initialize(@Nonnull List<MethodSignature> entryPoints) { | |||
* | |||
* @param method this object contains the method body which is inspected. | |||
*/ | |||
protected List<ClassType> collectInstantiatedClassesInMethod(SootMethod method) { | |||
if (method == null || method.isAbstract() || method.isNative()) { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
we should keep isAbstract() and isNative() as they have no 'Body'
addCallToCG( | ||
call.getSourceMethodSignature(), | ||
concreteTarget, | ||
call.getInvokableStmt(), |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
call.getInvokableStmt(), | |
call.getInvokableStmt().asInvokableStmt(), |
and then we could make the respective Parameter of addCallToCG more precise as well
No description provided.