5cf6b860a6
- `kotlin.dom` does not need this because it contains only extensions - Add test for launching whole project fix; mute it because currently it does not pass - The test fails because in tests `RefJavaManager` tries to create `RefJavaFileImpl` for .kt files. It will try to use UAST, but it does not work for JS files. In production this is disabled, so no problems occur
11 lines
159 B
Kotlin
Vendored
11 lines
159 B
Kotlin
Vendored
// "Fix 'kotlin.browser' package usage" "true"
|
|
// JS
|
|
|
|
package test
|
|
|
|
fun use(a: Any) {}
|
|
|
|
fun usage() {
|
|
use(kotlin.<caret>browser.localStorage.toString())
|
|
}
|