Changeset View
Changeset View
Standalone View
Standalone View
src/repository/api/ArcanistMercurialAPI.php
| Show First 20 Lines • Show All 974 Lines • ▼ Show 20 Lines | private function executeMercurialFeatureTest($feature, $resolve) { | ||||
| return $result; | return $result; | ||||
| } | } | ||||
| private function newMercurialFeatureFuture($feature) { | private function newMercurialFeatureFuture($feature) { | ||||
| switch ($feature) { | switch ($feature) { | ||||
| case 'shelve': | case 'shelve': | ||||
| return $this->execFutureLocal( | return $this->execFutureLocal( | ||||
| '--config extensions.shelve= shelve --help'); | '--config extensions.shelve= shelve --help --'); | ||||
| case 'evolve': | |||||
| return $this->execFutureLocal('prune --help --'); | |||||
| default: | default: | ||||
| throw new Exception( | throw new Exception( | ||||
| pht( | pht( | ||||
| 'Unknown Mercurial feature "%s".', | 'Unknown Mercurial feature "%s".', | ||||
| $feature)); | $feature)); | ||||
| } | } | ||||
| } | } | ||||
| Show All 36 Lines | |||||