switch ($type) { case "ArrayExpression":
case "ArrayPattern":
$code .= "[" .
$this->
joinNodes( $node->
getElements(),
"," .
$this->renderOpts->sao
) .
"]";
break;
case "ArrowFunctionExpression":
if ($node->
getAsync()) { $code .= "async" .
$this->renderOpts->sao;
} $code .= "(" .
$this->renderOpts->sirb .
$this->
joinNodes( $node->
getParams(),
"," .
$this->renderOpts->sao
) .
$this->renderOpts->sirb .
")" .
$this->renderOpts->sao .