Skip to content

Commit 67eb0bf

Browse files
committed
[chore] Clean up p0 todos
1 parent f6a6b34 commit 67eb0bf

File tree

2 files changed

+1
-2
lines changed

2 files changed

+1
-2
lines changed

src/main/scala/com/github/tgeng/archon/core/ir/typing.scala

+1-1
Original file line numberDiff line numberDiff line change
@@ -454,7 +454,7 @@ def inferType
454454
case Effects(literals, operands) if operands.isEmpty && literals.size == 1 =>
455455
literals.head
456456
case _ =>
457-
// TODO[p0]: consider adding an effect context to aid operation resolution during type checking
457+
// TODO[p2]: consider adding an effect context to aid operation resolution during type checking
458458
throw IllegalStateException(
459459
"operation should have been type checked and verified to be simple before reduction",
460460
)

src/main/scala/com/github/tgeng/archon/core/ir/typingContext.scala

-1
Original file line numberDiff line numberDiff line change
@@ -174,7 +174,6 @@ class TypingContext
174174
private var solvedVersion: Int = 0
175175
given TypingContext = this
176176

177-
// TODO[P0]: check usage of this method. Normally the following `resolve` should be used instead.
178177
def resolveMeta(m: Meta): MetaVariable = metaVars(m.index)
179178

180179
def withMetaResolved[R]

0 commit comments

Comments
 (0)