{
body._if(x.gt(y))._then().block()._return();
}
{
JSIfStatement _if = body._if(x.le(y));
_if._then()._return(x.mul(y));
_if._else()._return(x.plus(x));
}
{
JSIfStatement _if = body._if(x.le(y));
_if._then().block()._return(x.mul(y));
_if._else().block()._return(x.plus(x));
}
{
JSIfStatement _if = body._if(x.le(y));
_if._then().block()._return(x.mul(y));
_if._else()._if(x.eq(y))._then()._return(x.plus(x));
}
}
{