Skip to content

Commit 125e732

Browse files
committed
JS: Fix bad join order
1 parent cd39092 commit 125e732

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

javascript/ql/lib/semmle/javascript/ApiGraphs.qll

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -257,9 +257,9 @@ module API {
257257
/**
258258
* Gets a representative for the `contents` of this value.
259259
*/
260-
bindingset[this, contents]
260+
bindingset[contents]
261261
pragma[inline_late]
262-
Node getContents(DataFlow::ContentSet contents) {
262+
private Node getContents(DataFlow::ContentSet contents) {
263263
// We always use getAStoreContent when generating content edges, and we always use getAReadContent when querying the graph.
264264
result = this.getContent(contents.getAReadContent())
265265
}

0 commit comments

Comments
 (0)