We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4163078 commit 8b08ddfCopy full SHA for 8b08ddf
csharp/ql/lib/semmle/code/csharp/dataflow/internal/DataFlowPrivate.qll
@@ -2066,13 +2066,14 @@ module Csv {
2066
2067
/** Computes the first 6 columns for CSV rows of `c`. */
2068
string asPartialModel(DataFlowCallable c) {
2069
- exists(string namespace, string type |
+ exists(string namespace, string type, string name |
2070
c.getDeclaringType().hasQualifiedName(namespace, type) and
2071
+ c.hasQualifiedName(_, name) and
2072
result =
2073
namespace + ";" //
2074
+ type + ";" //
2075
+ getCallableOverride(c) + ";" //
- + c.getName() + ";" //
2076
+ + name + ";" //
2077
+ "(" + parameterQualifiedTypeNamesToString(c) + ")" //
2078
+ /* ext + */ ";" //
2079
)
0 commit comments