Changeset View
Changeset View
Standalone View
Standalone View
src/lint/linter/ArcanistBaseXHPASTLinter.php
| <?php | <?php | ||||
| /** | /** | ||||
| * @task sharing Sharing Parse Trees | * @task sharing Sharing Parse Trees | ||||
| */ | */ | ||||
| abstract class ArcanistBaseXHPASTLinter extends ArcanistFutureLinter { | abstract class ArcanistBaseXHPASTLinter extends ArcanistLinter { | ||||
| private $futures = array(); | private $futures = array(); | ||||
| private $trees = array(); | private $trees = array(); | ||||
| private $exceptions = array(); | private $exceptions = array(); | ||||
| private $refcount = array(); | private $refcount = array(); | ||||
| final public function getCacheVersion() { | final public function getCacheVersion() { | ||||
| $parts = array(); | $parts = array(); | ||||
| ▲ Show 20 Lines • Show All 232 Lines • Show Last 20 Lines | |||||