Introduce FIR serializer (isn't in use yet, KT-38156)

This commit is contained in:
Mikhail Glukhikh
2020-04-13 18:23:03 +03:00
parent 2c63a15af2
commit 2aae735a8e
11 changed files with 1392 additions and 1 deletions
@@ -0,0 +1,18 @@
plugins {
kotlin("jvm")
id("jps-compatible")
}
dependencies {
compile(project(":core:descriptors"))
compile(project(":compiler:fir:cones"))
compile(project(":compiler:fir:tree"))
compile(project(":compiler:fir:resolve"))
compileOnly(intellijCoreDep()) { includeJars("intellij-core", rootProject = rootProject) }
}
sourceSets {
"main" { projectDefault() }
"test" { none() }
}