diff --git a/powershell/ql/lib/semmle/code/powershell/Command.qll b/powershell/ql/lib/semmle/code/powershell/Command.qll index 4b00d7e1b97..76528163d42 100644 --- a/powershell/ql/lib/semmle/code/powershell/Command.qll +++ b/powershell/ql/lib/semmle/code/powershell/Command.qll @@ -12,7 +12,7 @@ private predicate parseCommandName(Cmd cmd, string namespace, string name) { } class Cmd extends @command, CmdBase { - override string toString() { result = this.getQualifiedCommandName() } + override string toString() { result = "call to " + this.getQualifiedCommandName() } override SourceLocation getLocation() { command_location(this, result) }