FIR: fix LT conversion of imports with backticks
This commit is contained in:
+1
-1
@@ -231,7 +231,7 @@ class DeclarationsConverter(
|
||||
|
||||
private fun MutableList<String>.collectSegments(expression: LighterASTNode) {
|
||||
when (expression.tokenType) {
|
||||
REFERENCE_EXPRESSION -> add(expression.asText)
|
||||
REFERENCE_EXPRESSION -> add(expression.getAsStringWithoutBacktick())
|
||||
DOT_QUALIFIED_EXPRESSION -> {
|
||||
expression.forEachChildren {
|
||||
collectSegments(it)
|
||||
|
||||
Reference in New Issue
Block a user