Make a new parenthesis expr

Property definitions

nitc $ ASTBuilder :: make_parenthesis
	# Make a new parenthesis expr
	fun make_parenthesis(expr: AExpr, annotations: nullable AAnnotations): AParExpr
	do
		return new AParExpr.make(expr,annotations)
	end
src/astbuilder.nit:145,2--149,4