/**
* Sets the initializer
*
* @param VariableDeclaration|Expression $init Initializer
*
* @return $this
*/
public function setInit($init)
{
$this->assertType(
$init,
array("VariableDeclaration", "Expression"),
true
);
$this->init = $init;
return $this;
}
/**
* Returns the test expression
*
* @return Expression
*/