Skip to content

Commit e9ead67

Browse files
committed
fix merge
1 parent b0cc8c2 commit e9ead67

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

core/src/main/scala/dx/core/languages/wdl/WdlBlock.scala

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -250,10 +250,10 @@ case class WdlBlock(index: Int,
250250
val elementNames = elements
251251
.collect {
252252
case call: TAT.Call => s"frag ${call.actualName}"
253-
case TAT.Scatter(id, expr, _, _) =>
253+
case TAT.Scatter(id, expr, _) =>
254254
val collection = TypeUtils.prettyFormatExpr(expr)
255255
s"scatter (${id} in ${collection})"
256-
case TAT.Conditional(expr, _, _) =>
256+
case TAT.Conditional(expr, _) =>
257257
val cond = TypeUtils.prettyFormatExpr(expr)
258258
s"if (${cond})"
259259
}

0 commit comments

Comments
 (0)