File tree Expand file tree Collapse file tree 1 file changed +1
-7
lines changed
compiler/src/dotty/tools/dotc/transform/init Expand file tree Collapse file tree 1 file changed +1
-7
lines changed Original file line number Diff line number Diff line change @@ -1261,12 +1261,6 @@ object Semantic:
12611261 /** Add a checking task to the work list */
12621262 def addTask (thisRef : ThisRef )(using WorkList ) = workList.addTask(Task (thisRef))
12631263
1264- /** Perform check on the work list until it becomes empty
1265- *
1266- * Should only be called once from the checker.
1267- */
1268- def check ()(using Cache , WorkList , Context ) = workList.work()
1269-
12701264 /** Check the specified tasks
12711265 *
12721266 * Semantic.checkTasks {
@@ -1277,7 +1271,7 @@ object Semantic:
12771271 val workList = new WorkList
12781272 val cache = new Cache
12791273 taskBuilder(using workList)
1280- Semantic .check ()(using cache, workList , ctx)
1274+ workList.work ()(using cache, ctx)
12811275
12821276// ----- Semantic definition --------------------------------
12831277
You can’t perform that action at this time.
0 commit comments