Skip to content
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

AnalysisScope example #11

Merged
merged 9 commits into from
Nov 30, 2024
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
package com.ibm.wala.examples.AnalysisScopeExamples;
jerryxu158 marked this conversation as resolved.
Show resolved Hide resolved

import com.ibm.wala.ipa.callgraph.AnalysisScope;
import com.ibm.wala.ipa.callgraph.AnalysisScope;
import com.ibm.wala.util.config.FileOfClasses;
import com.ibm.wala.util.config.AnalysisScopeReader;

import java.io.IOException;

import static com.ibm.wala.util.config.AnalysisScopeReader.makeJavaBinaryAnalysisScope;

public class AnalysisScopeExamples {
AnalysisScope makeAnalysisScope(String classPath) throws IOException{
jerryxu158 marked this conversation as resolved.
Show resolved Hide resolved
return makeJavaBinaryAnalysisScope(classPath, null);
jerryxu158 marked this conversation as resolved.
Show resolved Hide resolved
}
}