Returns all passes in order to be processed.
@api
array An array of all passes to process
public function getPasses() {
return array_merge(array(
$this->mergePass,
), $this->beforeOptimizationPasses, $this->optimizationPasses, $this->beforeRemovingPasses, $this->removingPasses, $this->afterRemovingPasses);
}