Kotlin: ReturnStmt CFG isn't handled properly yet

This commit is contained in:
Ian Lynagh
2021-11-26 17:27:10 +00:00
parent db7f5a04be
commit 25ccf0569e

View File

@@ -3,6 +3,7 @@ import semmle.code.java.ControlFlowGraph
predicate shouldBeDeadEnd(ControlFlowNode n) {
n instanceof BreakStmt and n.getFile().getExtension() = "kt" or // TODO
n instanceof ReturnStmt and n.getFile().getExtension() = "kt" or // TODO
n instanceof Interface or // TODO
n instanceof Class or // TODO
n instanceof Parameter or // TODO