IR: do not inherit IrExpressionWithCopy from IrExpression

This commit is contained in:
Alexander Udalov
2020-07-22 21:16:57 +02:00
parent 9aa7da44e2
commit fde7314aaf
4 changed files with 11 additions and 13 deletions
@@ -28,7 +28,6 @@ interface IrExpression : IrStatement, IrVarargElement, IrAttributeContainer {
accept(transformer, data) as IrExpression
}
interface IrExpressionWithCopy : IrExpression {
fun copy(): IrExpressionWithCopy
interface IrExpressionWithCopy {
fun copy(): IrExpression
}