Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1eda692 commit 37d6bc2Copy full SHA for 37d6bc2
2 files changed
java/kotlin-extractor/src/main/kotlin/KotlinFileExtractor.kt
@@ -605,6 +605,7 @@ open class KotlinFileExtractor(
605
606
fun isNumericFunction(fName: String): Boolean {
607
return isFunction("kotlin", "Int", fName) ||
608
+ isFunction("kotlin", "Byte", fName) ||
609
isFunction("kotlin", "Short", fName) ||
610
isFunction("kotlin", "Long", fName) ||
611
isFunction("kotlin", "Float", fName) ||
java/ql/test/kotlin/library-tests/exprs/exprs.kt
@@ -2,7 +2,7 @@ import java.awt.Polygon
2
import java.awt.Rectangle
3
4
fun topLevelMethod(x: Int, y: Int,
5
- byx: Double, byy: Double,
+ byx: Byte, byy: Byte,
6
sx: Short, sy: Short,
7
lx: Long, ly: Long,
8
dx: Double, dy: Double,
0 commit comments