Kotlin: Add a comment

This commit is contained in:
Ian Lynagh
2022-03-09 12:50:20 +00:00
parent 44375fe1ae
commit ea74803053

View File

@@ -132,6 +132,7 @@ class KotlinExtractorGlobalState {
val syntheticToRealClassMap = HashMap<IrClass, IrClass?>()
val syntheticToRealFunctionMap = HashMap<IrSimpleFunction, IrSimpleFunction?>()
val syntheticToRealFieldMap = HashMap<IrField, IrField?>()
// TODO: This could be less global; it's really per-file
val context = Stack<ExtractorContext>()
}