[FIR] Add prototype of diagnostic collector

This commit is contained in:
Dmitriy Novozhilov
2019-10-28 15:29:20 +03:00
parent e909b63d30
commit 9b77dec99c
19 changed files with 451 additions and 2 deletions
@@ -513,7 +513,7 @@ fun main(args: Array<String>) {
testGroup("compiler/fir/resolve/tests", "compiler/fir/resolve/testData") {
testClass<AbstractFirResolveTestCase> {
model("resolve", pattern = KT_WITHOUT_DOTS_IN_NAME, excludeDirs = listOf("stdlib", "cfg", "smartcasts"))
model("resolve", pattern = KT_WITHOUT_DOTS_IN_NAME, excludeDirs = listOf("stdlib", "cfg", "smartcasts", "diagnostics"))
}
testClass<AbstractFirCfgBuildingTest> {
@@ -528,6 +528,10 @@ fun main(args: Array<String>) {
testClass<AbstractFirCfgBuildingWithStdlibTest> {
model("resolve/stdlib/contracts", pattern = KT_WITHOUT_DOTS_IN_NAME)
}
testClass<AbstractFirResolveWithDiagnosticsTestCase> {
model("resolve/diagnostics", pattern = KT_WITHOUT_DOTS_IN_NAME)
}
}
testGroup("compiler/fir/resolve/tests", "compiler/testData") {