aboutsummaryrefslogtreecommitdiff
path: root/src/dotty/tools/dotc/config/Config.scala
blob: af75aea897c0af952e467f77d99d76078a9d6f3a (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
package dotty.tools.dotc.config

object Config {

  final val cacheMemberNames = true
  final val cacheAsSeenFrom = true

  /** When set, use new signature-based matching.
   *  Advantantage of doing so: It's supposed to be faster
   *  Disadvantage: It might hide inconsistencies, so while debugging it's better to turn it off
   */
  final val newMatch = false
}