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 64a9598 commit 6c8fb61Copy full SHA for 6c8fb61
javascript/ql/lib/semmle/javascript/dataflow/internal/sharedlib/FlowSummaryImpl.qll
@@ -1276,10 +1276,12 @@ module Private {
1276
c = "Argument" or parseArg(c, ppos)
1277
)
1278
or
1279
- exists(ReturnNodeExt ret |
+ exists(
1280
+ ReturnNode ret // TODO: hacked to make this compile; need to switch to module in qlpack
1281
+ |
1282
c = "ReturnValue" and
1283
ret = node.asNode() and
- ret.getKind().(ValueReturnKind).getKind() = getReturnValueKind() and
1284
+ ret.getKind() = getReturnValueKind() and
1285
mid.asCallable() = getNodeEnclosingCallable(ret)
1286
1287
0 commit comments