Make CFG for TDo post-order

This commit is contained in:
Nick Rolfe
2021-05-07 17:00:30 +01:00
parent 46c9f858c4
commit 7f6805c82f
2 changed files with 36 additions and 41 deletions

View File

@@ -1111,6 +1111,7 @@ module Trees {
this instanceof ParenthesizedExpr or
this instanceof BeginBlock or
this instanceof ASTInternal::TThen or
this instanceof ASTInternal::TDo or
this instanceof ASTInternal::TElse
}
@@ -1142,6 +1143,7 @@ module Trees {
not this instanceof ParenthesizedExpr and
not this instanceof BeginBlock and
not this instanceof ASTInternal::TThen and
not this instanceof ASTInternal::TDo and
not this instanceof ASTInternal::TElse
}