We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 295bc69 commit 123bc64Copy full SHA for 123bc64
1 file changed
javascript/ql/lib/semmle/javascript/ApiGraphs.qll
@@ -1280,9 +1280,13 @@ module API {
1280
nd = MkUse(ref)
1281
or
1282
S::isAdditionalUseRoot(nd) and
1283
- nd = MkUse(ref)
+ nd = mkUseLate(ref)
1284
}
1285
1286
+ bindingset[node]
1287
+ pragma[inline_late]
1288
+ private TApiNode mkUseLate(DataFlow::Node node) { result = MkUse(node) }
1289
+
1290
private import semmle.javascript.dataflow.TypeTracking
1291
1292
/**
0 commit comments