FIR IDE: do not remove duplicated diagnostics

This hides the real problem why diagnostics are duplicated
This commit is contained in:
Ilya Kirillov
2021-04-12 12:28:36 +02:00
parent 77ae1fa1f2
commit d438d2db40
5 changed files with 22 additions and 14 deletions
+2 -2
View File
@@ -1,4 +1,4 @@
// EXPECTED_DUPLICATED_HIGHLIGHTING
open class NoC
class NoC1 : NoC()
@@ -18,7 +18,7 @@ class WithPC1(a : Int) {
}
class Foo() : WithPC0(), <error descr="Type expected"><error descr="[SYNTAX] Syntax error">this</error></error>() {
class Foo() : WithPC0(), <error descr="Type expected"><error descr="[SYNTAX] Syntax error"><error descr="[SYNTAX] Syntax error">this</error></error></error>() {
}
+1 -1
View File
@@ -1,4 +1,4 @@
// EXPECTED_DUPLICATED_HIGHLIGHTING
open class NoC
class NoC1 : NoC()