File tree Expand file tree Collapse file tree 2 files changed +6
-3
lines changed
csharp/ql/src/utils/modelgenerator/internal Expand file tree Collapse file tree 2 files changed +6
-3
lines changed Original file line number Diff line number Diff line change @@ -25,8 +25,11 @@ module PrintingImpl<PrintingSig Printing> {
25
25
+ Printing:: getProvenance ( )
26
26
}
27
27
28
- string asNeutralModel ( Printing:: Api api ) {
29
- result = asPartialNeutralModel ( api ) + Printing:: getProvenance ( )
28
+ string asNeutralSummaryModel ( Printing:: Api api ) {
29
+ result =
30
+ asPartialNeutralModel ( api ) //
31
+ + "summary" + ";" //
32
+ + Printing:: getProvenance ( )
30
33
}
31
34
32
35
/**
Original file line number Diff line number Diff line change @@ -86,5 +86,5 @@ string captureFlow(DataFlowTargetApi api) {
86
86
*/
87
87
string captureNoFlow ( DataFlowTargetApi api ) {
88
88
not exists ( captureFlow ( api ) ) and
89
- result = ModelPrinting:: asNeutralModel ( api )
89
+ result = ModelPrinting:: asNeutralSummaryModel ( api )
90
90
}
You can’t perform that action at this time.
0 commit comments