fe328f8c7a
1) Trim unused spaces in annotations 2) Rewrote fq name rendering 3) Added annotations to for loop variable 4) Added type arguments render along to type parameters in functions
28 lines
602 B
Kotlin
28 lines
602 B
Kotlin
plugins {
|
|
kotlin("jvm")
|
|
}
|
|
|
|
dependencies {
|
|
testRuntime(intellijDep())
|
|
testCompile(intellijCoreDep()) { includeJars("intellij-core") }
|
|
|
|
testCompile(project(":compiler:visualizer:render-psi"))
|
|
testCompile(project(":compiler:visualizer:render-fir"))
|
|
testCompile(project(":compiler:visualizer:common"))
|
|
|
|
testCompile(commonDep("junit:junit"))
|
|
testCompile(projectTests(":compiler:tests-common"))
|
|
testCompile(projectTests(":compiler:fir:resolve"))
|
|
|
|
}
|
|
|
|
sourceSets {
|
|
"main" {}
|
|
"test" { projectDefault() }
|
|
}
|
|
|
|
projectTest {
|
|
workingDir = rootDir
|
|
}
|
|
|
|
testsJar() |