ruby/python: make SummaryTypeTracker private

This commit is contained in:
Rasmus Lerchedahl Petersen
2023-06-13 11:32:06 +02:00
parent 8cae151883
commit 203f8226cb
2 changed files with 4 additions and 4 deletions

View File

@@ -179,7 +179,7 @@ private predicate argumentPositionMatch(
)
}
module SummaryTypeTrackerInput implements SummaryTypeTracker::Input {
private module SummaryTypeTrackerInput implements SummaryTypeTracker::Input {
// Dataflow nodes
class Node = DataFlowPublic::Node;
@@ -258,4 +258,4 @@ module SummaryTypeTrackerInput implements SummaryTypeTracker::Input {
Node callTo(SummarizedCallable callable) { result = callable.getACallSimple() }
}
module TypeTrackerSummaryFlow = SummaryTypeTracker::SummaryFlow<SummaryTypeTrackerInput>;
private module TypeTrackerSummaryFlow = SummaryTypeTracker::SummaryFlow<SummaryTypeTrackerInput>;