Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Expose some types that are used in exposed APIs
`com.ibm.wala.cast.test.TestCAstTranslator.checkAssertions` is a `public` method that takes an argument of type `com.ibm.wala.cast.test.TestCAstTranslator.TranslatorAssertions`. The latter, therefore, needs to be `public` as well or else the checkAssertions` method can never be called. Similarly, `com.ibm.wala.core.tests.shrike.DynamicCallGraphTestBase.check` is a `protected` method that takes an argument of type `com.ibm.wala.core.tests.shrike.DynamicCallGraphTestBase.EdgesTest`. The latter must at least have `protected` visibility too, or else the `check` method can never be called.
- Loading branch information