JS: Change type of a parameter

This commit is contained in:
Asger Feldthaus
2021-02-15 14:42:03 +00:00
parent cee1a12489
commit cbfa5ad303

View File

@@ -830,7 +830,7 @@ module Redux {
/**
* Holds if `pred -> succ` is step from an action creation to its use in a reducer function.
*/
predicate actionToReducerStep(DataFlow::Node pred, DataFlow::SourceNode succ) {
predicate actionToReducerStep(DataFlow::Node pred, DataFlow::Node succ) {
// Actions created by an action creator library
exists(ActionCreator action |
exists(DataFlow::CallNode call | call = action.ref().getACall() |