File tree Expand file tree Collapse file tree 1 file changed +3
-1
lines changed
transpiler/src/main/scala/org/polystat/py2eo/transpiler Expand file tree Collapse file tree 1 file changed +3
-1
lines changed Original file line number Diff line number Diff line change @@ -52,7 +52,9 @@ object Transpile {
5252 debugPrinter(y._1, " afterSimplifyFor" )
5353
5454 try {
55- val rmWith = GenericStatementPasses .procStatement(SimplifyWith .apply)(y._1, y._2)
55+ val starInCollCons = GenericStatementPasses .simpleProcExprInStatement(StarInCollectionConstructor .apply)(y._1, y._2)
56+ debugPrinter(starInCollCons._1, " afterStarInCollCons" )
57+ val rmWith = GenericStatementPasses .procStatement(SimplifyWith .apply)(starInCollCons._1, starInCollCons._2)
5658 debugPrinter(rmWith._1, " afterRmWith" )
5759 val rmAssert = GenericStatementPasses .procStatement(SimplifyAssert .apply)(rmWith._1, rmWith._2)
5860 debugPrinter(rmAssert._1, " afterRmAssert" )
You can’t perform that action at this time.
0 commit comments