PS: Fix CFG ordering on CmdExpr.

This commit is contained in:
Mathias Vorreiter Pedersen
2024-10-14 12:04:22 +01:00
parent 830bf57d3a
commit 950a10be90

View File

@@ -727,7 +727,7 @@ module Trees {
}
}
class CmdExprTree extends StandardPreOrderTree instanceof CmdExpr {
class CmdExprTree extends StandardPostOrderTree instanceof CmdExpr {
override AstNode getChildNode(int i) { i = 0 and result = super.getExpr() }
}