File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
csharp/ql/lib/semmle/code/csharp/hashcons Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -306,7 +306,7 @@ private module ListHashCons<ListHashConsInputSig Input> {
306306 }
307307}
308308
309- module CallHashConsInput implements ListHashConsInputSig {
309+ private module CallHashConsInput implements ListHashConsInputSig {
310310 class List = Call ;
311311
312312 Expr getExpr ( List l , int i ) { result = l .getArgument ( i ) }
@@ -351,7 +351,7 @@ private predicate objectCreationHashCons(
351351 CallHashCons:: listHashCons ( oc , args )
352352}
353353
354- module ArrayInitializerHashConsInput implements ListHashConsInputSig {
354+ private module ArrayInitializerHashConsInput implements ListHashConsInputSig {
355355 class List extends ArrayInitializer {
356356 List ( ) {
357357 // For performance reasons we restrict this to "small" array initializers.
@@ -364,7 +364,7 @@ module ArrayInitializerHashConsInput implements ListHashConsInputSig {
364364
365365private module ArrayInitializerHashCons = ListHashCons< ArrayInitializerHashConsInput > ;
366366
367- module ArrayCreationHashConsInput implements ListHashConsInputSig {
367+ private module ArrayCreationHashConsInput implements ListHashConsInputSig {
368368 class List = ArrayCreation ;
369369
370370 Expr getExpr ( List l , int i ) { result = l .getLengthArgument ( i ) }
You can’t perform that action at this time.
0 commit comments