Changeset View
Changeset View
Standalone View
Standalone View
src/lint/linter/ArcanistExternalLinter.php
| Show First 20 Lines • Show All 198 Lines • ▼ Show 20 Lines | /* -( Interpreters, Binaries and Flags )----------------------------------- */ | ||||
| * Return the default interpreter, like "python" or "node". This method is | * Return the default interpreter, like "python" or "node". This method is | ||||
| * only invoked if @{method:shouldUseInterpreter} has been overridden to | * only invoked if @{method:shouldUseInterpreter} has been overridden to | ||||
| * return `true`. | * return `true`. | ||||
| * | * | ||||
| * @return string Default interpreter. | * @return string Default interpreter. | ||||
| * @task bin | * @task bin | ||||
| */ | */ | ||||
| public function getDefaultInterpreter() { | public function getDefaultInterpreter() { | ||||
| throw new Exception("Incomplete implementation!"); | throw new Exception('Incomplete implementation!'); | ||||
| } | } | ||||
| /** | /** | ||||
| * Get the effective interpreter. This method synthesizes configuration and | * Get the effective interpreter. This method synthesizes configuration and | ||||
| * defaults. | * defaults. | ||||
| * | * | ||||
| * @return string Effective interpreter. | * @return string Effective interpreter. | ||||
| ▲ Show 20 Lines • Show All 336 Lines • Show Last 20 Lines | |||||