FIR: support more precise diagnostics about parameter names

#KT-52762 Fixed
This commit is contained in:
Mikhail Glukhikh
2022-06-17 18:27:04 +02:00
committed by Space
parent 9fbafc3eb9
commit 065e852199
18 changed files with 154 additions and 57 deletions
@@ -5,7 +5,7 @@ import java.util.concurrent.ConcurrentHashMap
fun main() {
val map = ConcurrentHashMap<String, String>()
map.put(
<!NAMED_PARAMETER_NOT_FOUND!>key<!> = "key",
<!NAMED_PARAMETER_NOT_FOUND!>value<!> = "value"
<!NO_VALUE_FOR_PARAMETER, NO_VALUE_FOR_PARAMETER!>)<!>
key = "key",
value = "value"
)
}