[FE] Create special module for common frontent parts which uses PSI
This commit is contained in:
committed by
TeamCityServer
parent
ddc6c70611
commit
793209e72f
@@ -182,6 +182,7 @@ extra["compilerModules"] = arrayOf(
|
||||
":compiler:psi",
|
||||
":compiler:frontend",
|
||||
":compiler:frontend.common",
|
||||
":compiler:frontend.common-psi",
|
||||
":compiler:frontend.java",
|
||||
":compiler:frontend:cfg",
|
||||
":compiler:cli-common",
|
||||
|
||||
@@ -0,0 +1,15 @@
|
||||
plugins {
|
||||
kotlin("jvm")
|
||||
id("jps-compatible")
|
||||
}
|
||||
|
||||
dependencies {
|
||||
api(project(":compiler:frontend.common"))
|
||||
api(project(":compiler:psi"))
|
||||
compileOnly(intellijCoreDep()) { includeJars("intellij-core") }
|
||||
}
|
||||
|
||||
sourceSets {
|
||||
"main" { projectDefault() }
|
||||
"test" {}
|
||||
}
|
||||
@@ -13,6 +13,7 @@ dependencies {
|
||||
compile(project(":compiler:resolution"))
|
||||
compile(project(":compiler:psi"))
|
||||
compile(project(":compiler:frontend.common"))
|
||||
compile(project(":compiler:frontend.common-psi"))
|
||||
compile(project(":kotlin-script-runtime"))
|
||||
compile(commonDep("io.javaslang","javaslang"))
|
||||
compileOnly(intellijCoreDep()) { includeJars("intellij-core") }
|
||||
|
||||
@@ -97,6 +97,7 @@ include ":benchmarks",
|
||||
":compiler:visualizer:render-psi",
|
||||
":compiler:frontend",
|
||||
":compiler:frontend.common",
|
||||
":compiler:frontend.common-psi",
|
||||
":compiler:frontend.java",
|
||||
":compiler:frontend:cfg",
|
||||
":kotlin-compiler-runner",
|
||||
|
||||
Reference in New Issue
Block a user