Skip to content

Commit d66fe08

Browse files
committed
Add QLDoc for the getKind predicate.
1 parent a9f7994 commit d66fe08

File tree

6 files changed

+18
-0
lines changed

6 files changed

+18
-0
lines changed

csharp/ql/lib/semmle/code/csharp/dataflow/internal/FlowSummaryImpl.qll

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1333,6 +1333,9 @@ module Private {
13331333
/** Gets the string representation of this callable used by `neutral/1`. */
13341334
abstract string getCallableCsv();
13351335

1336+
/**
1337+
* Gets the kind of the neutral.
1338+
*/
13361339
string getKind() { result = super.getKind() }
13371340

13381341
string toString() { result = super.toString() }

go/ql/lib/semmle/go/dataflow/internal/FlowSummaryImpl.qll

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1333,6 +1333,9 @@ module Private {
13331333
/** Gets the string representation of this callable used by `neutral/1`. */
13341334
abstract string getCallableCsv();
13351335

1336+
/**
1337+
* Gets the kind of the neutral.
1338+
*/
13361339
string getKind() { result = super.getKind() }
13371340

13381341
string toString() { result = super.toString() }

java/ql/lib/semmle/code/java/dataflow/internal/FlowSummaryImpl.qll

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1333,6 +1333,9 @@ module Private {
13331333
/** Gets the string representation of this callable used by `neutral/1`. */
13341334
abstract string getCallableCsv();
13351335

1336+
/**
1337+
* Gets the kind of the neutral.
1338+
*/
13361339
string getKind() { result = super.getKind() }
13371340

13381341
string toString() { result = super.toString() }

python/ql/lib/semmle/python/dataflow/new/internal/FlowSummaryImpl.qll

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1333,6 +1333,9 @@ module Private {
13331333
/** Gets the string representation of this callable used by `neutral/1`. */
13341334
abstract string getCallableCsv();
13351335

1336+
/**
1337+
* Gets the kind of the neutral.
1338+
*/
13361339
string getKind() { result = super.getKind() }
13371340

13381341
string toString() { result = super.toString() }

ruby/ql/lib/codeql/ruby/dataflow/internal/FlowSummaryImpl.qll

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1333,6 +1333,9 @@ module Private {
13331333
/** Gets the string representation of this callable used by `neutral/1`. */
13341334
abstract string getCallableCsv();
13351335

1336+
/**
1337+
* Gets the kind of the neutral.
1338+
*/
13361339
string getKind() { result = super.getKind() }
13371340

13381341
string toString() { result = super.toString() }

swift/ql/lib/codeql/swift/dataflow/internal/FlowSummaryImpl.qll

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1333,6 +1333,9 @@ module Private {
13331333
/** Gets the string representation of this callable used by `neutral/1`. */
13341334
abstract string getCallableCsv();
13351335

1336+
/**
1337+
* Gets the kind of the neutral.
1338+
*/
13361339
string getKind() { result = super.getKind() }
13371340

13381341
string toString() { result = super.toString() }

0 commit comments

Comments
 (0)