Fix top level import quick fix test for JS
There's no longer any JS-only top level function that is not imported by default, so I used a common non-imported top level function.
This commit is contained in:
+1
-1
@@ -3,5 +3,5 @@
|
|||||||
package some
|
package some
|
||||||
|
|
||||||
fun testFun() {
|
fun testFun() {
|
||||||
<caret>jq()
|
<caret>cos(0.0)
|
||||||
}
|
}
|
||||||
|
|||||||
+2
-2
@@ -2,8 +2,8 @@
|
|||||||
// JS
|
// JS
|
||||||
package some
|
package some
|
||||||
|
|
||||||
import jquery.jq
|
import kotlin.math.cos
|
||||||
|
|
||||||
fun testFun() {
|
fun testFun() {
|
||||||
jq()
|
cos(0.0)
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user