Merge pull request #16561 from aschackmull/java/typeflow-effectively-private

Java: Improve dispatch through TypeFlow of effectively private calls.
This commit is contained in:
Anders Schack-Mulligen
2024-05-31 15:11:18 +02:00
committed by GitHub
3 changed files with 20 additions and 4 deletions

View File

@@ -1,5 +1,5 @@
class ViableCallable {
public class ViableCallable {
public <T1, T2, T3> void Run(C1<T1, T2> x1, C1<T1[], T2> x2, T1 t1, T1[] t1s) {
// Viable callables: C2.M(), C3.M(), C4.M(), C5.M(), C6.M(), C7.M(), C8.M(), C9.M()
x1.M(t1, 8);