aboutsummaryrefslogblamecommitdiff
path: root/src/dotty/tools/dotc/reporting/UniqueMessagePositions.scala
blob: 32554e6b6b16cf3196ed050ce9e6b4b463d370cb (plain) (tree)
1
2
3
4
5
6
7
8
9




                               
                                        


                            
                                                                          



                                                          
                                                                     



                                                                                            


                                                                        
                                                       

                                                                         
         

       
 
package dotty.tools
package dotc
package reporting

import scala.collection.mutable
import util.{SourcePosition, SourceFile}
import core.Contexts.Context

/**
 * This trait implements `isHidden` so that multiple messages per position
 * are suppressed, unless they are of increasing severity.
 */
trait UniqueMessagePositions extends Reporter {

  private val positions = new mutable.HashMap[(SourceFile, Int), Int]

  /** Logs a position and returns true if it was already logged.
   *  @note  Two positions are considered identical for logging if they have the same point.
   */
  override def isHidden(d: Diagnostic)(implicit ctx: Context): Boolean =
    super.isHidden(d) || {
      d.pos.exists && {
        positions get (ctx.source, d.pos.point) match {
          case Some(level) if level >= d.level => true
          case _ => positions((ctx.source, d.pos.point)) = d.level; false
        }
      }
    }
}