Skip to content

Commit 22e76e8

Browse files
committed
Warn on redundant setting
Warn but don't ignore redundant setting. Prefer NoReporter to null default reporter.
1 parent ae55323 commit 22e76e8

File tree

2 files changed

+7
-6
lines changed

2 files changed

+7
-6
lines changed

compiler/src/dotty/tools/dotc/config/Settings.scala

+6-5
Original file line numberDiff line numberDiff line change
@@ -116,15 +116,16 @@ object Settings {
116116
def tryToSet(state: ArgsSummary): ArgsSummary = {
117117
val ArgsSummary(sstate, arg :: args, errors, warnings) = state
118118
def update(value: Any, args: List[String]) =
119-
val (value1, twicely) =
119+
var dangers = warnings
120+
val value1 =
120121
if changed && isMultivalue then
121122
val value0 = value.asInstanceOf[List[String]]
122123
val current = valueIn(sstate).asInstanceOf[List[String]]
123-
val newly = current ++ value0.filterNot(current.contains)
124-
(newly, value0.exists(current.contains))
124+
value0.filter(current.contains).foreach(s => dangers :+= s"Setting $name set to $s redundantly")
125+
current ++ value0
125126
else
126-
(value, changed)
127-
val dangers = if twicely then warnings :+ s"Flag $name set repeatedly" else warnings
127+
if changed then dangers :+= s"Flag $name set repeatedly"
128+
value
128129
changed = true
129130
ArgsSummary(updateIn(sstate, value1), args, errors, dangers)
130131
def fail(msg: String, args: List[String]) =

compiler/src/dotty/tools/dotc/reporting/StoreReporter.scala

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ import Diagnostic._
1717
* - The reporter is not flushed and the message containers capture a
1818
* `Context` (about 4MB)
1919
*/
20-
class StoreReporter(outer: Reporter = null) extends Reporter {
20+
class StoreReporter(outer: Reporter = Reporter.NoReporter) extends Reporter {
2121

2222
protected var infos: mutable.ListBuffer[Diagnostic] = null
2323

0 commit comments

Comments
 (0)