Move decompiler from IJ repository

This commit just moves files and fixes imports
This commit is contained in:
Ilya Kirillov
2021-12-17 15:46:01 +03:00
parent a367fee5cf
commit fceb46924e
14 changed files with 639 additions and 1 deletions
@@ -0,0 +1,23 @@
plugins {
kotlin("jvm")
id("jps-compatible")
}
dependencies {
implementation(project(":compiler:psi"))
implementation(project(":compiler:frontend.java"))
implementation(project(":core:compiler.common"))
implementation(project(":compiler:light-classes"))
implementation(project(":analysis:analysis-api-providers"))
implementation(project(":analysis:analysis-api"))
implementation(project(":analysis:analysis-internal-utils"))
implementation(project(":analysis:project-structure"))
implementation(project(":compiler:psi:cls-psi-stub-builder"))
implementation(project(":compiler:psi:cls-psi-file-stub-builder"))
implementation(intellijCore())
}
sourceSets {
"main" { projectDefault() }
"test" { none() }
}