We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 56f05d8 + 4164ba2 commit 2a033aaCopy full SHA for 2a033aa
compiler/src/dotty/tools/dotc/ast/Positioned.scala
@@ -23,8 +23,11 @@ abstract class Positioned(implicit @constructorOnly src: SourceFile) extends Pro
23
*/
24
def uniqueId: Int = myUniqueId
25
26
- def uniqueId_=(id: Int): Unit = {
27
- //assert(id != 2523, this)
+ private def uniqueId_=(id: Int): Unit = {
+ // FOR DEBUGGING
28
+ // assert(id != 2523, this)
29
+ // if (id == 1234) new Throwable().printStackTrace()
30
+
31
myUniqueId = id
32
}
33
0 commit comments