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.
1 parent 1c7775d commit cc91d43Copy full SHA for cc91d43
compiler/src/dotty/tools/dotc/Compiler.scala
@@ -151,7 +151,8 @@ class Compiler {
151
List(new GenBCode) :: // Generate JVM bytecode
152
Nil
153
154
- var runId: Int = 1
+ // Initially 0, so that the first nextRunId call would return InitialRunId == 1
155
+ private var runId: Int = 0
156
def nextRunId: Int = {
157
runId += 1; runId
158
}
0 commit comments