Make a new and with two expr

Property definitions

nitc $ ASTBuilder :: make_and
	# Make a new and with two expr
	fun make_and(right_expr: AExpr, left_expr: AExpr): AAndExpr
	do
		return new AAndExpr.make(right_expr,left_expr)
	end
src/astbuilder.nit:139,2--143,4