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 4c8ed6b commit ae88b64Copy full SHA for ae88b64
compiler/src/dotty/tools/dotc/inlines/Inlines.scala
@@ -134,9 +134,9 @@ object Inlines:
134
* inline call expansions smaller.
135
*/
136
def liftBindings(tree: Tree, liftPos: Tree => Tree): Tree = tree match {
137
- case Block(stats, expr) =>
138
- bindings ++= stats.map(liftPos)
139
- liftBindings(expr, liftPos)
+ //case Block(stats, expr) =>
+ // bindings ++= stats.map(liftPos)
+ // liftBindings(expr, liftPos)
140
case tree @ Inlined(call, stats, expr) =>
141
bindings ++= stats.map(liftPos)
142
val lifter = liftFromInlined(call)
0 commit comments