Kotlin: Fix Byte tests

This commit is contained in:
Ian Lynagh
2021-11-22 14:03:31 +00:00
parent 1eda692ec8
commit 37d6bc29dc
2 changed files with 2 additions and 1 deletions

View File

@@ -605,6 +605,7 @@ open class KotlinFileExtractor(
fun isNumericFunction(fName: String): Boolean {
return isFunction("kotlin", "Int", fName) ||
isFunction("kotlin", "Byte", fName) ||
isFunction("kotlin", "Short", fName) ||
isFunction("kotlin", "Long", fName) ||
isFunction("kotlin", "Float", fName) ||