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 a1c41cc commit b7cd35fCopy full SHA for b7cd35f
javascript/ql/lib/semmle/javascript/ApiGraphs.qll
@@ -1528,8 +1528,11 @@ module API {
1528
pragma[inline]
1529
predicate isAdditionalDefRoot(Node node) { none() }
1530
1531
+ overlay[local]
1532
+ private predicate isOverlay() { databaseMetadata("isOverlay", "true") }
1533
+
1534
bindingset[node]
- predicate inScope(DataFlow::Node node) { any() }
1535
+ predicate inScope(DataFlow::Node node) { not isOverlay() and exists(node) }
1536
}
1537
1538
private module Stage1 = Stage<Stage1Input>;
0 commit comments