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:
1261
1261
/** Add a checking task to the work list */
1262
1262
def addTask (thisRef : ThisRef )(using WorkList ) = workList.addTask(Task (thisRef))
1263
1263
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
-
1270
1264
/** Check the specified tasks
1271
1265
*
1272
1266
* Semantic.checkTasks {
@@ -1277,7 +1271,7 @@ object Semantic:
1277
1271
val workList = new WorkList
1278
1272
val cache = new Cache
1279
1273
taskBuilder(using workList)
1280
- Semantic .check ()(using cache, workList , ctx)
1274
+ workList.work ()(using cache, ctx)
1281
1275
1282
1276
// ----- Semantic definition --------------------------------
1283
1277
You can’t perform that action at this time.
0 commit comments