JS: Fix bad join order

This commit is contained in:
Asger F
2025-03-17 13:44:33 +01:00
parent cd3909245d
commit 125e732c4c

View File

@@ -257,9 +257,9 @@ module API {
/**
* Gets a representative for the `contents` of this value.
*/
bindingset[this, contents]
bindingset[contents]
pragma[inline_late]
Node getContents(DataFlow::ContentSet contents) {
private Node getContents(DataFlow::ContentSet contents) {
// We always use getAStoreContent when generating content edges, and we always use getAReadContent when querying the graph.
result = this.getContent(contents.getAReadContent())
}