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 3100c58 commit d5414d6Copy full SHA for d5414d6
tasty-inspector/src/scala/tasty/inspector/TastyInspector.scala
@@ -99,9 +99,11 @@ trait TastyInspector:
99
100
override def run(implicit ctx: Context): Unit =
101
if !alreadyRan then
102
- val qctx = QuoteContextImpl()
103
- self.finishProcessingCompilationUnits(using qctx)
104
- alreadyRan = true
+ try
+ val qctx = QuoteContextImpl()
+ self.finishProcessingCompilationUnits(using qctx)
105
+ finally
106
+ alreadyRan = true
107
108
var alreadyRan = false
109
end TastyInspectorFinishPhase
0 commit comments