File tree Expand file tree Collapse file tree 1 file changed +0
-10
lines changed
plugins/kotlin-dataframe/src/org/jetbrains/kotlinx/dataframe/plugin/extensions Expand file tree Collapse file tree 1 file changed +0
-10
lines changed Original file line number Diff line number Diff line change @@ -132,16 +132,6 @@ private class DataFrameFileLowering(val context: IrPluginContext) : FileLowering
132
132
irFile.transformChildren(this , null )
133
133
}
134
134
135
- override fun visitClass (declaration : IrClass ): IrStatement {
136
- val origin = declaration.origin
137
- return if (origin is IrDeclarationOrigin .GeneratedByPlugin && origin.pluginKey is DataFramePlugin ) {
138
- declaration.transformChildren(this , null )
139
- declaration
140
- } else {
141
- super .visitClass(declaration)
142
- }
143
- }
144
-
145
135
override fun visitConstructor (declaration : IrConstructor ): IrStatement {
146
136
val origin = declaration.origin
147
137
if (! (origin is IrDeclarationOrigin .GeneratedByPlugin && origin.pluginKey is TokenGenerator .Key )) return declaration
You can’t perform that action at this time.
0 commit comments