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

Unify call graphs #40

Merged
merged 3 commits into from
Oct 13, 2021
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Address review comments
  • Loading branch information
errt committed Oct 11, 2021
commit 79e02150ca7fb0bbb9a541dcf046cca4f047e6aa
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@ import org.opalj.fpcf.properties.callgraph.TypePropagationVariant
import org.opalj.br.analyses.Project
import org.opalj.tac.cg.CallGraphKey
import org.opalj.tac.cg.CHACallGraphKey
import org.opalj.tac.cg.CTACallGraphKey
import org.opalj.tac.cg.FTACallGraphKey
import org.opalj.tac.cg.MTACallGraphKey
import org.opalj.tac.cg.RTACallGraphKey
Expand Down Expand Up @@ -166,7 +167,7 @@ class CallGraphTests extends PropertiesTest {
}

describe("the CTA call graph analysis is executed") {
cgKey = FTACallGraphKey
cgKey = CTACallGraphKey

val as = executeAnalyses(schedulersForPropagationBasedAlgorithms(CTASetEntitySelector))

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,6 @@ import org.opalj.br.ReferenceType
import org.opalj.tac.fpcf.properties.TACAI

/**
* TODO: That state object is currently copy&paste and should be refactored.
*
* @author Florian Kuebler
*/
class CGState[ContextType <: Context](
Expand Down