Kotlin: Add a "bug" case

This commit is contained in:
Ian Lynagh
2021-08-10 11:00:04 +01:00
parent b68178e8cc
commit f608384085

View File

@@ -238,6 +238,8 @@ class KotlinFileExtractor(val tw: TrapWriter) {
tw.writeStmts_returnstmt(id, parent, idx, callable)
tw.writeHasLocation(id, locId)
extractExpression(s.value, id, 0)
} else -> {
extractorBug("Unrecognised IrStatement: " + s.javaClass)
}
}
}