use of abs.frontend.ast.ExpressionStmt in project abstools by abstools.
the class AbsASTBuilderUtil method getExpStmt.
public static final ExpressionStmt getExpStmt(Exp exp) {
ExpressionStmt ex = new ExpressionStmt();
ex.setExp(exp);
return ex;
}
Aggregations