mirror of
https://github.com/github/codeql.git
synced 2026-04-29 18:55:14 +02:00
C#: Use callables qualified name instead of name, when printing summary like information.
This commit is contained in:
@@ -2066,13 +2066,14 @@ module Csv {
|
||||
|
||||
/** Computes the first 6 columns for CSV rows of `c`. */
|
||||
string asPartialModel(DataFlowCallable c) {
|
||||
exists(string namespace, string type |
|
||||
exists(string namespace, string type, string name |
|
||||
c.getDeclaringType().hasQualifiedName(namespace, type) and
|
||||
c.hasQualifiedName(_, name) and
|
||||
result =
|
||||
namespace + ";" //
|
||||
+ type + ";" //
|
||||
+ getCallableOverride(c) + ";" //
|
||||
+ c.getName() + ";" //
|
||||
+ name + ";" //
|
||||
+ "(" + parameterQualifiedTypeNamesToString(c) + ")" //
|
||||
+ /* ext + */ ";" //
|
||||
)
|
||||
|
||||
Reference in New Issue
Block a user