Fix JS parser to properly handle "." <keyword> sequence

This commit is contained in:
Alexey Andreev
2017-04-24 12:17:52 +03:00
parent 9e89213d66
commit ca7062d776
4 changed files with 23 additions and 2 deletions
@@ -0,0 +1,13 @@
// MINIFICATION_THRESHOLD: 481
// MODULE: lib
// FILE: lib.kt
class A {
fun instanceof() = "OK"
}
inline fun foo() = A().instanceof()
// MODULE: main(lib)
// FILE: main.kt
fun box() = foo()