77c330d94e
Created visualizer module in compiler. It will contain basic tests for renderer. Additionally added three different modules in visualizer: 1) psi - will contain renderer for old frontend 2) fir - renderer for new frontend 3) common - will contain common code for both renderers
14 lines
231 B
Kotlin
14 lines
231 B
Kotlin
plugins {
|
|
kotlin("jvm")
|
|
}
|
|
|
|
dependencies {
|
|
compile(project(":compiler:visualizer:common"))
|
|
compileOnly(intellijCoreDep()) { includeJars("intellij-core") }
|
|
}
|
|
|
|
sourceSets {
|
|
"main" { projectDefault() }
|
|
"test" { }
|
|
}
|