Sets the program's body
Statement[]|ModuleDeclaration[] $body Program's body:
$this
public function setBody($body) { $this->assertArrayOf($body, array( "Statement", "ModuleDeclaration", )); $this->body = $body; return $this; }