Skip to content

Commit

Permalink
Fixed Inception inference on InvokeExp.
Browse files Browse the repository at this point in the history
  • Loading branch information
robby-phd committed Oct 17, 2024
1 parent 48a8665 commit 1780f3b
Showing 1 changed file with 6 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -165,6 +165,12 @@ object InceptionPlugin {
ok = T
case _ =>
}
te match {
case te: AST.Exp.Invoke =>
ok = T
recInvoke(fe, te)
case _ =>
}
case (fe: AST.Exp.Invoke, te: AST.Exp.Invoke) => recInvoke(fe, te)
case (_, _) => ok = F
}
Expand Down

0 comments on commit 1780f3b

Please sign in to comment.