Fix import resolution for some cases of malformed imports ("import some.")
Fix parsing import directives in case of non-identifier after "import" Add diagnostics test for malformed imports
This commit is contained in:
@@ -0,0 +1,9 @@
|
||||
package test
|
||||
|
||||
import <!UNRESOLVED_REFERENCE!>some<!>.<!SYNTAX!><!>
|
||||
import <!SYNTAX!>.some<!>
|
||||
import <!SYNTAX!>.kotlin<!>
|
||||
import kotlin.<!SYNTAX!><!>
|
||||
import<!SYNTAX!><!>
|
||||
import <!SYNTAX!>.<!>
|
||||
import <!SYNTAX!>*<!>
|
||||
@@ -0,0 +1,4 @@
|
||||
package
|
||||
|
||||
package test {
|
||||
}
|
||||
Reference in New Issue
Block a user