data is detected as keyword when used as named param of a function
JavierSegoviaCordoba opened this issue · 0 comments
JavierSegoviaCordoba commented
Actually data is appearing with the orange color (darcula theme) when it is used as named param.
someFunction(data = "Some data")
It even is detected as keyword in the function declaration:
fun someFunction(data: String) { ... }