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> {
306
306
}
307
307
}
308
308
309
- module CallHashConsInput implements ListHashConsInputSig {
309
+ private module CallHashConsInput implements ListHashConsInputSig {
310
310
class List = Call ;
311
311
312
312
Expr getExpr ( List l , int i ) { result = l .getArgument ( i ) }
@@ -351,7 +351,7 @@ private predicate objectCreationHashCons(
351
351
CallHashCons:: listHashCons ( oc , args )
352
352
}
353
353
354
- module ArrayInitializerHashConsInput implements ListHashConsInputSig {
354
+ private module ArrayInitializerHashConsInput implements ListHashConsInputSig {
355
355
class List extends ArrayInitializer {
356
356
List ( ) {
357
357
// For performance reasons we restrict this to "small" array initializers.
@@ -364,7 +364,7 @@ module ArrayInitializerHashConsInput implements ListHashConsInputSig {
364
364
365
365
private module ArrayInitializerHashCons = ListHashCons< ArrayInitializerHashConsInput > ;
366
366
367
- module ArrayCreationHashConsInput implements ListHashConsInputSig {
367
+ private module ArrayCreationHashConsInput implements ListHashConsInputSig {
368
368
class List = ArrayCreation ;
369
369
370
370
Expr getExpr ( List l , int i ) { result = l .getLengthArgument ( i ) }
You can’t perform that action at this time.
0 commit comments