File tree Expand file tree Collapse file tree 2 files changed +1
-2
lines changed
gen/org/jetbrains/kotlin/ir
src/org/jetbrains/kotlin/ir/declarations Expand file tree Collapse file tree 2 files changed +1
-2
lines changed Original file line number Diff line number Diff line change @@ -12,4 +12,4 @@ package org.jetbrains.kotlin.ir
12
12
*
13
13
* `null` <=> `this` element wasn't inlined.
14
14
*/
15
- var IrElement .originalBeforeInline: IrElement ? by irAttribute(copyByDefault = false )
15
+ var IrElement .originalBeforeInline: IrElement ? by irAttribute(copyByDefault = true )
Original file line number Diff line number Diff line change @@ -21,7 +21,6 @@ import java.io.File
21
21
fun IrElement.copyAttributes (other : IrElement , includeAll : Boolean = false) {
22
22
(this as IrElementBase ).copyAttributesFrom(other as IrElementBase , includeAll)
23
23
attributeOwnerId = other.attributeOwnerId
24
- originalBeforeInline = other.originalBeforeInline
25
24
}
26
25
27
26
val IrClass .isSingleFieldValueClass: Boolean
You can’t perform that action at this time.
0 commit comments