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 b0cc8c2 commit e9ead67Copy full SHA for e9ead67
core/src/main/scala/dx/core/languages/wdl/WdlBlock.scala
@@ -250,10 +250,10 @@ case class WdlBlock(index: Int,
250
val elementNames = elements
251
.collect {
252
case call: TAT.Call => s"frag ${call.actualName}"
253
- case TAT.Scatter(id, expr, _, _) =>
+ case TAT.Scatter(id, expr, _) =>
254
val collection = TypeUtils.prettyFormatExpr(expr)
255
s"scatter (${id} in ${collection})"
256
- case TAT.Conditional(expr, _, _) =>
+ case TAT.Conditional(expr, _) =>
257
val cond = TypeUtils.prettyFormatExpr(expr)
258
s"if (${cond})"
259
}
0 commit comments