@Override
  public Expression build(List<CompilationUnit> out) {
    AST ast = this.getAST();

    ParenthesizedExpression paren = ast.newParenthesizedExpression();
    paren.setExpression(this.expr.translate(out));

    return paren;
  }