Reverse dependency 'psi' <-> 'frontend.common'

Move ParseUtils to 'psi', and ImportPath to 'frontend.common'.

Now 'psi' depends on 'frontend.common', and that allows to remove
dependency of 'fir:tree:tree-generator' on 'psi', allowing the former to
compile in parallel with the old frontend code.
This commit is contained in:
Alexander Udalov
2020-03-15 15:14:54 +01:00
committed by Alexander Udalov
parent d70271b6aa
commit b6fdc96994
8 changed files with 11 additions and 30 deletions
+3 -6
View File
@@ -4,15 +4,12 @@ plugins {
}
dependencies {
compile(project(":compiler:psi"))
compile(project(":compiler:config"))
compile(project(":compiler:container"))
compileOnly(intellijCoreDep()) { includeJars("intellij-core") }
}
sourceSets {
"main" {
projectDefault()
}
"main" { projectDefault() }
"test" {}
}
}