(ASTree tree)
| 183 | return tree instanceof PrimaryExpr || tree instanceof VarStmnt; |
| 184 | } |
| 185 | protected static boolean isControlStmnt(ASTree tree) { |
| 186 | return tree instanceof BlockStmnt || tree instanceof IfStmnt |
| 187 | || tree instanceof WhileStmnt; |
| 188 | } |
| 189 | } |
| 190 | @Reviser public static class IfEx extends IfStmnt { |
| 191 | public IfEx(List<ASTree> c) { super(c); } |