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 f64bdcc commit 149ec20Copy full SHA for 149ec20
javascript/ql/lib/semmle/javascript/ApiGraphs.qll
@@ -1795,7 +1795,10 @@ module API {
1795
/** Gets the argument index at which the spread argument appears. */
1796
int getIndex() { result = index }
1797
1798
- override string toString() { result = "getSpreadArgument(" + index + ")" }
+ override string toString() {
1799
+ // Note: This refers to the internal edge that has no corresponding method on API::Node
1800
+ result = "getSpreadArgument(" + index + ")"
1801
+ }
1802
}
1803
1804
/** A label for a function that is a wrapper around another function. */
0 commit comments